summaryrefslogtreecommitdiff
path: root/SkinEngine/src/headers.h
blob: ca58cd554451dd3291d78dd590ea3fa7798d3776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 "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