diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:37:22 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:37:22 +0000 |
commit | 10a3bfa53858f75fa64833ce5d860a14a756c38a (patch) | |
tree | ad7d5b7f857c5120a77d3b1e60b46512ebf47f56 /message_notify/common.h | |
parent | 7f6efd8c36003cb710319a358f62f1a0d8900384 (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@7 4f64403b-2f21-0410-a795-97e2b3489a10
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
+
|