| 130 | |
| 131 | |
| 132 | [[noreturn]] |
| 133 | void Fail(char const * reason) |
| 134 | { |
| 135 | #if defined(_DEBUG) |
| 136 | DebugBreak(); |
| 137 | #endif |
| 138 | MessageBoxA(NULL, reason, "Osiris Loader Error", MB_OK | MB_ICONERROR); |
| 139 | TerminateProcess(GetCurrentProcess(), 1); |
| 140 | } |
| 141 | |
| 142 | |
| 143 | std::string ToUTF8(std::wstring const & s) |
no outgoing calls
no test coverage detected