2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

backtrace output for win platform added, testing with abort() call in ~AppClass()

This commit is contained in:
John Preston
2016-01-21 14:58:58 +08:00
parent d672353ff9
commit 0f4405dbaf
11 changed files with 507 additions and 72 deletions

View File

@@ -179,6 +179,8 @@ namespace Notify {
struct GlobalDataStruct {
QString LangSystemISO;
int32 LangSystem = languageDefault;
QByteArray LastCrashDump;
};
GlobalDataStruct *GlobalData = 0;
@@ -278,6 +280,7 @@ Type &Ref##Name() { \
DefineGlobalReadOnly(QString, LangSystemISO);
DefineGlobalReadOnly(int32, LangSystem);
DefineGlobal(QByteArray, LastCrashDump);
}