summaryrefslogtreecommitdiff
path: root/skinengine/src/headers.h
diff options
context:
space:
mode:
authorwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-04-21 14:14:52 +0000
committerwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-04-21 14:14:52 +0000
commitcb4a46e7fbe62d788e66ed6121c717a2d22a4d7c (patch)
tree30df260fdc5a1b5a7049c2f8cac8b7ef17513d6d /skinengine/src/headers.h
parent19b6f534d2e784a1e120bf52c4aa07004798f473 (diff)
svn.miranda.im is moving to a new home!
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@7 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'skinengine/src/headers.h')
-rw-r--r--skinengine/src/headers.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/skinengine/src/headers.h b/skinengine/src/headers.h
new file mode 100644
index 0000000..f4e4849
--- /dev/null
+++ b/skinengine/src/headers.h
@@ -0,0 +1,60 @@
+#ifndef headers_h__
+#define headers_h__
+
+// disable security warnings about "*_s" functions
+#define _CRT_SECURE_NO_DEPRECATE
+
+// disable warnings about underscore in stdc functions
+#pragma warning(disable: 4996)
+
+#define _WIN32_WINNT 0x0501
+#define WINVER 0x0500
+#define OEMRESOURCE
+
+// Windows headers
+#include <windows.h>
+#include <process.h>
+#include <commctrl.h>
+#include <commdlg.h>
+
+// Resources
+//#include "../resource.h"
+
+// Miranda headers
+#define NOWIN2K
+#define MIRANDA_VER 0x0700
+
+extern "C"
+{
+ #include "newpluginapi.h"
+ #include "win2k.h"
+ #include "m_system.h"
+ #include "m_plugins.h"
+ #include "m_clui.h"
+ #include "m_clist.h"
+ #include "m_options.h"
+ #include "m_skin.h"
+ #include "m_langpack.h"
+ #include "m_database.h"
+ #include "m_utils.h"
+ #include "m_png.h"
+ #include "m_xml.h"
+};
+
+#include "m_system_cpp.h"
+
+// API for other plugins
+#include "../api/m_skinengine.h"
+
+// Our common handlers
+#include "bitmap_funcs.h"
+#include "bitmap_cache.h"
+#include "xml_cache.h"
+#include "data_source.h"
+#include "skin_object.h"
+#include "skin_complex.h"
+#include "skin_simple.h"
+#include "skin_layout.h"
+#include "skin_manager.h"
+
+#endif