diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:57:42 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:57:42 +0000 |
commit | d513db102812c5dd83f94084e979bb7e24345498 (patch) | |
tree | 29f599f98d2d5fb01d0e1dcb58077459ea609961 /worldtime_protocol/common.h | |
parent | 610f48f080c6ae8c298a032cd92bb2ca9948aded (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@24 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'worldtime_protocol/common.h')
-rw-r--r-- | worldtime_protocol/common.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/worldtime_protocol/common.h b/worldtime_protocol/common.h new file mode 100644 index 0000000..da1e9da --- /dev/null +++ b/worldtime_protocol/common.h @@ -0,0 +1,38 @@ +#ifndef _COMMON_H
+#define _COMMON_H
+
+#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
+#define VC_EXTRALEAN
+
+#define _WIN32_WINNT 0x0400
+#include <windows.h>
+#include <prsht.h>
+#include <winsock2.h>
+#include <winsock.h>
+#include <shellapi.h>
+#include <commdlg.h>
+
+#define PROTO "WorldTime"
+
+#include <stdio.h>
+
+#include "../../include/newpluginapi.h"
+#include "../../include/statusmodes.h"
+#include "../../include/m_options.h"
+#include "../../include/m_langpack.h"
+#include "../../include/m_popup.h"
+#include "../../include/m_system.h"
+#include "../../include/m_skin.h"
+#include "../../include/m_netlib.h"
+#include "../../include/m_database.h"
+#include "../../include/m_protocols.h"
+#include "../../include/m_protomod.h"
+#include "../../include/m_protosvc.h"
+#include "../../include/m_ignore.h"
+#include "../../include/m_clist.h"
+#include "../../include/m_clui.h"
+#include "../../include/m_utils.h"
+
+extern HINSTANCE hInst;
+
+#endif
|