diff options
Diffstat (limited to 'last_contact/common.h')
-rw-r--r-- | last_contact/common.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/last_contact/common.h b/last_contact/common.h new file mode 100644 index 0000000..7201202 --- /dev/null +++ b/last_contact/common.h @@ -0,0 +1,34 @@ +#ifndef _COMMON_H
+#define _COMMON_H
+
+#define _WIN32_IE 0x400
+
+#include <windows.h>
+#include <commctrl.h>
+
+#include "resource.h"
+#include <stdio.h>
+
+#include <newpluginapi.h>
+#include <m_system.h>
+#include <m_database.h>
+#include <m_options.h>
+#include <m_langpack.h>
+#include <m_popup.h>
+#include <m_skin.h>
+#include <m_clist.h>
+#include <m_clui.h>
+#include <m_message.h>
+#include <m_utils.h>
+#include <m_protocols.h>
+#include <m_updater.h>
+#include <win2k.h>
+
+#include <m_popup.h>
+
+#define MODULE "LastContact"
+
+extern HWND pluginwind;
+extern HINSTANCE hInst;
+
+#endif
|