diff options
Diffstat (limited to 'message_notify/common.h')
-rw-r--r-- | message_notify/common.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/message_notify/common.h b/message_notify/common.h new file mode 100644 index 0000000..1accfe7 --- /dev/null +++ b/message_notify/common.h @@ -0,0 +1,45 @@ +//#ifndef __COMMON_INC
+//#define __COMMON_INC
+
+#define MODULE "MessageNotify"
+
+#define _WIN32_WINNT 0x400 // for QueueUserAPC
+#define _WIN32_IE 0x300 // for InitCommonControlsEx
+
+#include <stdio.h>
+#include <windows.h>
+#include <process.h>
+#include <malloc.h>
+#include "resource.h"
+#include <commctrl.h>
+
+#include <newpluginapi.h>
+
+#include <m_system.h>
+#include <m_langpack.h>
+#include <m_options.h>
+#include <m_idle.h>
+#include <m_skin.h>
+#include <m_database.h>
+#include <m_clist.h>
+#include <m_message.h>
+#include <m_utils.h>
+#include <m_ignore.h>
+
+#include <m_updater.h>
+#include <m_metacontacts.h>
+
+
+extern HINSTANCE hInst;
+extern PLUGINLINK *pluginLink;
+
+extern HANDLE mainThread;
+
+extern HANDLE popupWindowList;
+
+void StartFocusTimer();
+void StopFocusTimer();
+
+
+//#endif
+
|