QuakeGod
2024-12-24 61deef5cdf96cbfdd6ad45be49e80d597c00ca65
提交 | 用户 | age
418cb3 1 
Q 2 // LCDDisplay.h: PROJECT_NAME 应用程序的主头文件
3 //
4
5 #pragma once
6
7 #ifndef __AFXWIN_H__
8     #error "include 'pch.h' before including this file for PCH"
9 #endif
10
11 #include "resource.h"        // 主符号
12
13
14 // CLCDDisplayTestApp:
15 // 有关此类的实现,请参阅 LCDDisplay.cpp
16 //
17
18 class CLCDDisplayTestApp : public CWinApp
19 {
20 public:
21     CLCDDisplayTestApp();
22
23 // 重写
24 public:
25     virtual BOOL InitInstance();
26
27 // 实现
28
29     DECLARE_MESSAGE_MAP()
30     ULONG_PTR m_gdiplusToken;
31     virtual int ExitInstance();
32 };
33
34 extern CLCDDisplayTestApp theApp;