-
Notifications
You must be signed in to change notification settings - Fork 14
/
stdafx.h
43 lines (37 loc) · 1.04 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
// stdafx.h : 標準のシステム インクルード ファイルのインクルード ファイル、または
// 参照回数が多く、かつあまり変更されない、プロジェクト専用のインクルード ファイル
// を記述します。
//
#pragma once
#ifndef WINVER
#define WINVER 0x0501 // Windows XP
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501 // Windows XP
#endif
#ifndef _WIN32_IE
#define _WIN32_IE 0x0600 // Internet Explorer 6.0
#endif
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <WindowsX.h>
#include <WinSock2.h>
#include <MMSystem.h>
#include <Shlwapi.h>
#include <GdiPlus.h>
#include <vector>
#include <list>
#include <regex>
#include <tchar.h>
#include <dwmapi.h>
#include <CommDlg.h>
#include <ShellAPI.h>
#include <process.h>
#include <WinCrypt.h>
#pragma comment(lib, "ws2_32.lib")
#pragma comment(lib, "winmm.lib")
#pragma comment(lib, "shlwapi.lib")
#pragma comment(lib, "gdiplus.lib")
#pragma comment(lib, "dwmapi.lib")
#pragma comment(lib, "imm32.lib")
#pragma comment(lib, "crypt32.lib")