diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-29 16:37:08 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-29 16:37:08 +0000 |
commit | 67f2d89c164c7adccdee065da1caac319d528b50 (patch) | |
tree | 96d5d1d87776a9fa48fd8fea33312d35aa6b1d77 /plugins/Mir_core/miranda.h | |
parent | c1840425166576b1cf187076a9344a78a20375b6 (diff) |
- yet another crash fix on exit;
- events speed-up
- quick ICQ exit
git-svn-id: http://svn.miranda-ng.org/main/trunk@687 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Mir_core/miranda.h')
-rw-r--r-- | plugins/Mir_core/miranda.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/Mir_core/miranda.h b/plugins/Mir_core/miranda.h index 65140260c1..71c0804fd1 100644 --- a/plugins/Mir_core/miranda.h +++ b/plugins/Mir_core/miranda.h @@ -43,6 +43,7 @@ int InitPathUtils(void); extern HINSTANCE hInst;
extern HWND hAPCWindow;
+extern HANDLE hStackMutex, hThreadQueueEmpty;
/**** modules.cpp **********************************************************************/
@@ -68,6 +69,8 @@ struct THookSubscriber };
};
+#define HOOK_SECRET_SIGNATURE 0xDEADBABA
+
struct THook
{
char name[ MAXMODULELABELLENGTH ];
@@ -75,6 +78,7 @@ struct THook int subscriberCount;
THookSubscriber* subscriber;
MIRANDAHOOK pfnHook;
+ DWORD secretSignature;
CRITICAL_SECTION csHook;
};
|