-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathframework.h
40 lines (36 loc) · 830 Bytes
/
framework.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
#pragma once
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define NOMINMAX
// Windows Header Files
#include <windows.h>
#include <commctrl.h>
#include <shellapi.h>
#include <windowsx.h>
#include <shobjidl_core.h>
#include <shlobj_core.h>
#include <winhttp.h>
#include <uxtheme.h>
#include <richedit.h>
#include <vssym32.h>
#include <wrl.h>
#include <shlwapi.h>
#include <propvarutil.h>
#include <propkey.h>
#include <wincodec.h>
// C RunTime Header Files
#include <cstdlib>
#include <cstdint>
#include <unordered_map>
#include <vector>
#include <string>
#include <filesystem>
#include <thread>
#include <array>
#include <optional>
#include <exception>
#include <coroutine>
#include <fstream>
#include <conio.h>
#include <unordered_set>
#include <delayimp.h>