diff options
author | George Hazan <george.hazan@gmail.com> | 2013-12-01 18:16:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-12-01 18:16:04 +0000 |
commit | c97a1472f85733e0cf4f3423af6647ff2fa00520 (patch) | |
tree | 61a37070d96d8ea98abacee9a58418ea2915d6e0 /plugins/YAPP/src/common.h | |
parent | 686046823acca19e390051ca1b3decf7d001d117 (diff) |
crash fix for YAPP (on exit)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7023 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAPP/src/common.h')
-rw-r--r-- | plugins/YAPP/src/common.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/YAPP/src/common.h b/plugins/YAPP/src/common.h index 209c441358..b906cdcf48 100644 --- a/plugins/YAPP/src/common.h +++ b/plugins/YAPP/src/common.h @@ -63,10 +63,11 @@ #define MODULE "YAPP"
-extern HMODULE hInst;
+extern HMODULE hInst;
+extern bool bShutdown;
-extern HFONT hFontFirstLine, hFontSecondLine, hFontTime;
-extern COLORREF colFirstLine, colSecondLine, colBg, colTime, colBorder, colSidebar, colTitleUnderline;
+extern HFONT hFontFirstLine, hFontSecondLine, hFontTime;
+extern COLORREF colFirstLine, colSecondLine, colBg, colTime, colBorder, colSidebar, colTitleUnderline;
extern MNOTIFYLINK *notifyLink;
|