diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-09 15:09:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-09 15:09:56 +0000 |
commit | 11a0c05e56a9ef98dcb8473e5c4ccd2a519ad730 (patch) | |
tree | da78d1bf31d4922c7c7a91c8af698ac94be0b8b2 /plugins/Nudge/src/headers.h | |
parent | 74a2e42b34d8495bf1e3676d4580e1d286384722 (diff) |
Nudge:
- old ugly list replaced with OBJLIST<>;
- plugin to reuse the same popup menu item instead of creating a menu item for each protocol;
- fix for a bug in options;
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@12698 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Nudge/src/headers.h')
-rw-r--r-- | plugins/Nudge/src/headers.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/Nudge/src/headers.h b/plugins/Nudge/src/headers.h index 86c31a568e..3260969903 100644 --- a/plugins/Nudge/src/headers.h +++ b/plugins/Nudge/src/headers.h @@ -51,7 +51,6 @@ #include "shake.h"
#include "Version.h"
#include "nudge.h"
-#include "options.h"
/*
*
@@ -93,4 +92,13 @@ void LoadPopupClass(); ****************************/
void AutoResendNudge(void *wParam) ;
+///////////////////////////////////////////////////////////////////////////////
+// external variables
+
+extern HINSTANCE hInst;
+extern int nProtocol;
extern CShake shake;
+extern CNudge GlobalNudge;
+
+extern CNudgeElement DefaultNudge;
+extern OBJLIST<CNudgeElement> arNudges;
\ No newline at end of file |