| 3170 | // |
| 3171 | |
| 3172 | static void gen_send( const act* action, const gpre_port* port, int column) |
| 3173 | { |
| 3174 | PAT args; |
| 3175 | const TEXT* pattern = |
| 3176 | "%RH->send(%V1, %RL, %PN, %PL, CAST_CONST_MSG(&%PI));"; |
| 3177 | |
| 3178 | args.pat_request = action->act_request; |
| 3179 | args.pat_vector1 = status_vector(action); |
| 3180 | args.pat_port = port; |
| 3181 | PATTERN_expand((USHORT) column, pattern, &args); |
| 3182 | |
| 3183 | set_sqlcode(action, column); |
| 3184 | } |
| 3185 | |
| 3186 | |
| 3187 | //____________________________________________________________ |
no test coverage detected