| 17 | namespace fusion { |
| 18 | |
| 19 | void errormessage(const std::string& message, const std::string& caption) |
| 20 | { |
| 21 | MessageBoxA(nullptr, message.c_str(), caption.c_str() , MB_OK | MB_ICONERROR); |
| 22 | } |
| 23 | |
| 24 | void errormessage(const std::wstring& message, const std::wstring& caption) |
| 25 | { |
no test coverage detected