Exits the window system. This should dismiss all windows, except the "window" used for raw_print(). str is printed if possible. */
| 665 | except the "window" used for raw_print(). str is printed if possible. |
| 666 | */ |
| 667 | void |
| 668 | mswin_exit_nhwindows(const char *str) |
| 669 | { |
| 670 | logDebug("mswin_exit_nhwindows(%s)\n", str); |
| 671 | |
| 672 | /* Write Window settings to the registry */ |
| 673 | mswin_write_reg(); |
| 674 | |
| 675 | // Don't do any of this (?) - exit_nhwindows does not terminate |
| 676 | // the application |
| 677 | // DestroyWindow(GetNHApp()->hMainWnd); |
| 678 | // nh_terminate(EXIT_SUCCESS); |
| 679 | } |
| 680 | |
| 681 | /* Prepare the window to be suspended. */ |
| 682 | void |
no test coverage detected