-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpch.h
47 lines (40 loc) · 854 Bytes
/
pch.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
#pragma once
#if !defined(PCH_H)
#define PCH_H
#define _CRT_DECLARE_NON_STDC_NAMES 0
#define _CRT_SECURE_NO_WARNINGS
#define _WIN32_WINNT _WIN32_WINNT_WIN10
#define WIN32_LEAN_AND_MEAN
#define NOGDICAPMASKS
#define NOVIRTUALKEYCODES
#define NOKEYSTATES
#define NOSYSCOMMANDS
#define NORASTEROPS
#define NOATOM
#define NOCLIPBOARD
#define NODRAWTEXT
#define NOKERNEL
#define NOMEMMGR
#define NOMETAFILE
#define NOMINMAX
#define NOOPENFILE
#define NOSCROLL
#define NOSERVICE
#define NOSOUND
#define NOTEXTMETRIC
#define NOWH
#define NOCOMM
#define NOKANJI
#define NOHELP
#define NOPROFILER
#define NODEFERWINDOWPOS
#define NOMCX
#include <sdkddkver.h>
#include <windows.h>
#include <commctrl.h>
#include <dispatcherqueue.h>
#include <webservices.h>
#include <windowsx.h>
#include <winrt/windows.foundation.h>
#include <winrt/windows.system.h>
#endif