-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutDlg.hpp
73 lines (63 loc) · 1.79 KB
/
AboutDlg.hpp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#if !defined(MFCAboutDlg_Included)
#define MFCAboutDlg_Included
#pragma once
#include "MFCpch.h"
#ifndef __AFXWIN_H__
#error "include 'MFCpch.h' before including this file for PCH"
#endif
#if !defined(IDD_ABOUTBOX)
#define IDD_ABOUTBOX 100
#endif
/////////////////////////////////////////////////////////////////////////////
// AboutDlg dialog used for App About
class AboutDlg : public CDialog
{
public:
AboutDlg() : CDialog(AboutDlg::IDD)
{
//{{AFX_DATA_INIT(CAboutDlg)
//}}AFX_DATA_INIT
}
// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAboutDlg)
//}}AFX_DATA_MAP
} // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
//{{AFX_MSG(CAboutDlg)
// No message handlers
//}}AFX_MSG
protected://DECLARE_MESSAGE_MAP()
static const AFX_MSGMAP* PASCAL GetThisMessageMap()
{
__pragma(warning(push))
__pragma(warning(disable: 4640)) /* message maps can only be called by single threaded message pump */
static const AFX_MSGMAP_ENTRY _messageEntries[] =
{
// //{{AFX_MSG_MAP(CAboutDlg)
// // No message handlers
// //}}AFX_MSG_MAP
{ 0, 0, 0, 0, AfxSig_end, (AFX_PMSG)0 }
};
__pragma(warning(pop))
static const AFX_MSGMAP messageMap =
{ &CDialog::GetThisMessageMap, &_messageEntries[0] };
return &messageMap;
}
public:
virtual const AFX_MSGMAP* GetMessageMap() const
{
return GetThisMessageMap();
}
};
#endif