| 41 | #endif |
| 42 | |
| 43 | static void mainLoop(void) |
| 44 | { |
| 45 | #if __APPLE__ |
| 46 | CFRunLoopRun(); |
| 47 | #elif __linux__ && !defined(ANDROID) && !defined(__ANDROID__) |
| 48 | g_main_loop_run(s_main_loop); |
| 49 | #elif defined(_MSC_VER) |
| 50 | win32MainLoop(); |
| 51 | #endif |
| 52 | } |
| 53 | |
| 54 | class TestOperation : public mailcore::Operation { |
| 55 | void main() |
no test coverage detected