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