-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathMain.h
executable file
·42 lines (26 loc) · 1.34 KB
/
Main.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
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 预处理
#pragma once
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 头文件
#include "Define.h"
#include <Windows.h>
#include <CommCtrl.h>
#include <ShlObj.h>
#include "Macro.h"
#include "Resource.h"
#include "MainDlg.h"
#include "AboutDlg.h"
#include "Ini.h"
#include "MapFile.h"
#include "AheadLib.h"
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 库文件
#pragma comment(lib, "ShLwApi.lib")
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 全局变量
extern HINSTANCE g_hInst;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////