QuakeGod
2024-12-24 61deef5cdf96cbfdd6ad45be49e80d597c00ca65
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
 
// MFCMView.h: MFCMView 应用程序的主头文件
//
#pragma once
 
#ifndef __AFXWIN_H__
    #error "在包含此文件之前包含 'pch.h' 以生成 PCH"
#endif
 
#include "resource.h"       // 主符号
 
 
// CMFCMViewApp:
// 有关此类的实现,请参阅 MFCMView.cpp
//
 
class CMFCMViewApp : public CWinAppEx
{
public:
    CMFCMViewApp() noexcept;
 
 
// 重写
public:
    virtual BOOL InitInstance();
    virtual int ExitInstance();
 
// 实现
protected:
    HMENU  m_hMDIMenu;
    HACCEL m_hMDIAccel;
 
public:
    afx_msg void OnAppAbout();
    afx_msg void OnFileNew();
    DECLARE_MESSAGE_MAP()
};
 
extern CMFCMViewApp theApp;