-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathMain.cpp
executable file
·39 lines (26 loc) · 1.16 KB
/
Main.cpp
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
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 预处理
#include "Main.h"
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 全局变量
HINSTANCE g_hInst = NULL;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 程序入口
INT WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PTSTR ptzCmdLine, INT iCmdShow)
{
// 获取当前实例句柄
g_hInst = hInstance;
// 初始化 INI 文件名
CIni::SetIniName();
// 显示启动画面
if (CIni::GetInt(INI_ShowSplash))
{
CAboutDlg::Splash();
}
// 显示对话框
CMainDlg::Show(g_hInst, ptzCmdLine);
return 0;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////