| 418 | |
| 419 | #if OS_WIN |
| 420 | static void alert(const char *message, const char *caption) { |
| 421 | MessageBoxA(NULL, message, caption, |
| 422 | MB_ICONINFORMATION | MB_OK | MB_TOPMOST); |
| 423 | } |
| 424 | static bool confirm(const char *message, const char *caption) { |
| 425 | return IDYES == MessageBoxA(NULL, message, caption, |
| 426 | MB_ICONWARNING/* MB_ICONQUESTION */ | MB_YESNO | MB_TOPMOST); |
no outgoing calls
no test coverage detected