-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstdafx.h
59 lines (42 loc) · 1.08 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
#pragma once
// Change these values to use different versions
#define WINVER _WIN32_WINNT_WIN10
#define _WIN32_WINNT _WIN32_WINNT_WIN10
#define _WIN32_IE _WIN32_IE_IE110
#define _RICHEDIT_VER 0x0500
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define NOMINMAX
// WTL
#define _WTL_NO_CSTRING
#define _WTL_NO_WTYPES
#define _WTL_NO_UNION_CLASSES
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
#include <atlbase.h>
#include <atlstr.h>
#include <atltypes.h>
#include <atlapp.h>
extern CAppModule _Module;
#include <atlwin.h>
#include <atldlgs.h> // must be included before atlfind.h
#include <atlcrack.h>
#include <atlctrls.h>
#include <atlfind.h>
#include <atlframe.h>
// Windows
#include <dbghelp.h>
// STL
#include <atomic>
#include <cinttypes>
#include <filesystem>
#include <functional>
#include <optional>
#include <set>
#include <span>
#include <string>
#include <thread>
// Libraries
#include <wil/stl.h> // must be included before other wil includes
#include <dia/dia2.h>
#include <dia/diacreate.h>
#include <wil/com.h>
#include <wil/win32_helpers.h>