-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathstdafx.h
165 lines (144 loc) · 3.57 KB
/
stdafx.h
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#pragma once
#if defined(_WINDOWS)
// Unnamed struct/union
#pragma warning( disable : 4201)
#define _WIN32_LEAN_AND_MEAN
#ifndef STRICT
#define STRICT
#endif
#define _ATL_NO_AUTOMATIC_NAMESPACE
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
#pragma warning( push, 0 )
#include <Windows.h>
#include <WindowsX.h>
#include <tchar.h>
#include <CommCtrl.h>
#include <shlobj.h>
#include <Uxtheme.h>
#include <dwmapi.h>
#include <Ole2.h>
#include <OleIdl.h>
#include <ShObjIdl.h>
#include <assert.h>
#include <stdlib.h>
#include <crtdbg.h>
#include <stdio.h>
#include <sys/types.h>
#include <mmsystem.h>
#include <stddef.h>
#include <time.h>
#include <stdint.h>
#include <io.h>
#include <fcntl.h>
#include <direct.h>
#include <WinInet.h>
#ifdef __cplusplus
#include <gdiplus.h>
using namespace Gdiplus;
//#define _ATL_DEBUG_INTERFACES
#define _ATL_APARTMENT_THREADED
#include <atlbase.h>
#include <atlcom.h>
#include <atlctl.h>
#include <atlcore.h>
#include <atlcoll.h>
#include <atlsafe.h>
using namespace ATL;
#include <algorithm>
#include <map>
#include <list>
#include <vector>
#include <string>
#include <comdef.h>
#include <DbgHelp.h>
#include "Wabbitemu_h.h"
#include "resource.h"
#include <strsafe.h>
namespace std
{
#ifdef UNICODE
typedef std::wstring tstring;
#else
typedef std::string tstring;
#endif
}
#endif
#pragma warning( pop )
#elif defined(_LINUX) || defined(_ANDROID)
#include <float.h>
#include <assert.h>
#include <setjmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include <stddef.h>
#include <time.h>
#include <ctype.h>
#ifdef __cplusplus
#include <map>
#endif
typedef void *LPVOID;
typedef const char *LPCTSTR;
typedef int errno_t;
#define MAX_PATH 256
#define _T(z) z
#define _tprintf_s printf
#define ARRAYSIZE(z) (sizeof(z)/sizeof((z)[0]))
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef min
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
#define _strnicmp strncasecmp
#define _tcsicmp strcasecmp
#define _putts puts
#define _tcsrchr strrchr
#define _tcscpy_s(dest, len, src) strcpy(dest, src)
#define _tcslen strlen
#define _tcscmp strcmp
#define _tcsncmp strncmp
#define _tcsnicmp _strnicmp
#define _stscanf_s sscanf_s
#define sscanf_s sscanf
#define vsprintf_s vsprintf
#define ZeroMemory(dest, size) memset(dest, 0, size)
#define memcpy_s(dest, num, source, size) memcpy(dest, source, size)
#define StringCbCopy(dest, size, source) strcpy(dest, source)
#define StringCchCopy(dest, size, source) strcpy(dest, source)
#define StringCbPrintf(dest, size, format, args...) sprintf(dest, format, args)
#define fopen_s(pFile,filename,mode) (*(pFile)) = fopen((filename),(mode))
#define tmpfile_s(pFile) (*(pFile)) = tmpfile()
#define _tfopen_s fopen_s
#elif defined(_MACVER)
#include <assert.h>
#include <setjmp.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <sys/types.h>
#include <stddef.h>
#include <time.h>
#include <ctype.h>
#ifdef __cplusplus
#include <map>
#endif
typedef int errno_t;
#define MAX_PATH 256
#define _T(z) z
#define _tprintf_s printf
#define ARRAYSIZE(z) (sizeof(z)/sizeof((z)[0]))
#define _strnicmp strncasecmp
#define _tcsnicmp strncasecmp
#define _tcsicmp strcasecmp
#define _putts puts
#define _tcsrchr strrchr
#define _tcscpy_s strcpy
#define _tcslen strlen
#define _tcscmp strcmp
#endif