| 814 | // |
| 815 | |
| 816 | act* PAR_event_wait(bool sql) |
| 817 | { |
| 818 | //char req_name[132]; |
| 819 | |
| 820 | // this is a simple statement, just add a handle |
| 821 | |
| 822 | act* action = MSC_action(0, ACT_event_wait); |
| 823 | SQL_resolve_identifier("<identifier>", NULL, MAX_EVENT_SIZE); |
| 824 | //SQL_resolve_identifier("<identifier>", req_name, sizeof(req_name)); |
| 825 | //strcpy(gpreGlob.token_global.tok_string, req_name); redundant |
| 826 | action->act_object = (ref*) PAR_symbol(SYM_dummy); |
| 827 | if (!sql) |
| 828 | PAR_end(); |
| 829 | |
| 830 | return action; |
| 831 | } |
| 832 | |
| 833 | |
| 834 | //____________________________________________________________ |
no test coverage detected