| 1680 | } |
| 1681 | |
| 1682 | void |
| 1683 | mswin_main_loop() |
| 1684 | { |
| 1685 | MSG msg; |
| 1686 | |
| 1687 | while (!mswin_have_input() && GetMessage(&msg, NULL, 0, 0) != 0) { |
| 1688 | if (!TranslateAccelerator(msg.hwnd, GetNHApp()->hAccelTable, &msg)) { |
| 1689 | TranslateMessage(&msg); |
| 1690 | DispatchMessage(&msg); |
| 1691 | } |
| 1692 | } |
| 1693 | } |
| 1694 | |
| 1695 | /* clean up and quit */ |
| 1696 | void |
no test coverage detected