| 12 | } |
| 13 | |
| 14 | const char* GetCppExceptionMessage(EXCEPTION_POINTERS* exception) |
| 15 | { |
| 16 | __try { return ((std::exception*)exception->ExceptionRecord->ExceptionInformation[1])->what(); } |
| 17 | __except (EXCEPTION_EXECUTE_HANDLER) { return "Could not find"; } |
| 18 | } |
| 19 | |
| 20 | thread_local std::wstring lastError = L"Unknown error"; |
| 21 |