| 61 | void LineCallback(asIScriptContext *ctx, DWORD *timeOut); |
| 62 | |
| 63 | int main(int argc, char **argv) |
| 64 | { |
| 65 | RunApplication(); |
| 66 | |
| 67 | // Wait until the user presses a key |
| 68 | cout << endl << "Press any key to quit." << endl; |
| 69 | while(!getch()); |
| 70 | |
| 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | void MessageCallback(const asSMessageInfo *msg, void *param) |
| 75 | { |
nothing calls this directly
no test coverage detected