Fix #8860: [Win32] Crashlog window wasn't reliably shown for crashes not on the main thread.

This commit is contained in:
Michael Lutz
2021-03-13 21:34:51 +01:00
parent 062eeb9810
commit 13011e00c6
5 changed files with 46 additions and 23 deletions

View File

@@ -114,6 +114,12 @@ public:
*/
static void InitialiseCrashLog();
/**
* Prepare crash log handler for a newly started thread.
* @note must be implemented by all implementers of CrashLog.
*/
static void InitThread();
static void SetErrorMessage(const char *message);
static void AfterCrashLogCleanup();
};