-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdafx.h
39 lines (33 loc) · 899 Bytes
/
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
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
#define _WIN32_IE 0x0600
#endif
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files:
#include <windows.h>
#include <Windowsx.h>
#include <commctrl.h>
#include <Shellapi.h>
#include <Shlwapi.h>
#include <tchar.h>
#include <strsafe.h>
// C RunTime Header Files
#include <stdio.h>
#include <string.h>
#include <memory.h>
#include <assert.h>
#include <string>
#include <string_view>
#include <cassert>
#include <memory>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <list>
#include <regex>
#include <ranges>
#include <optional>