| 75 | } |
| 76 | |
| 77 | static dmEngine::UpdateResult TestEngineUpdate(dmEngine::HEngine engine) |
| 78 | { |
| 79 | if (g_ExitRequested) |
| 80 | { |
| 81 | return dmEngine::RESULT_EXIT; |
| 82 | } |
| 83 | return dmEngineUpdate(engine); |
| 84 | } |
| 85 | |
| 86 | static void TestEngineGetResult(dmEngine::HEngine engine, int* run_action, int* exit_code, int* argc, char*** argv) |
| 87 | { |
nothing calls this directly
no test coverage detected