| 2748 | // |
| 2749 | |
| 2750 | static void gen_receive( const act* action, int column, const gpre_port* port) |
| 2751 | { |
| 2752 | PAT args; |
| 2753 | const TEXT* pattern = |
| 2754 | "isc_receive (%V1, (FB_API_HANDLE*) &%RH, (short) %PN, (short) %PL, &%PI, (short) %RL);"; |
| 2755 | |
| 2756 | args.pat_request = action->act_request; |
| 2757 | args.pat_vector1 = status_vector(action); |
| 2758 | args.pat_port = port; |
| 2759 | PATTERN_expand((USHORT) column, pattern, &args); |
| 2760 | |
| 2761 | set_sqlcode(action, column); |
| 2762 | } |
| 2763 | |
| 2764 | |
| 2765 | //____________________________________________________________ |
no test coverage detected