| 2840 | } |
| 2841 | |
| 2842 | int |
| 2843 | NHMessageBox(HWND hWnd, LPCTSTR text, UINT type) |
| 2844 | { |
| 2845 | TCHAR title[MAX_LOADSTRING]; |
| 2846 | if (program_state.exiting && !strcmp(text, "\n")) |
| 2847 | text = "Press Enter to exit"; |
| 2848 | |
| 2849 | LoadString(GetNHApp()->hApp, IDS_APP_TITLE_SHORT, title, MAX_LOADSTRING); |
| 2850 | |
| 2851 | return MessageBox(hWnd, text, title, type); |
| 2852 | } |
| 2853 | |
| 2854 | static mswin_status_lines _status_lines; |
| 2855 | static mswin_status_string _status_strings[MAXBLSTATS]; |
no test coverage detected