-
Notifications
You must be signed in to change notification settings - Fork 5
/
aboutdlg.h
68 lines (55 loc) · 1.94 KB
/
aboutdlg.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
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
/*===========================================================================
*
* File: Aboutdlg.H
* Author: Dave Humphrey ([email protected])
* Created On: 26 November 2011
*
* Description
*
*=========================================================================*/
#ifndef __ABOUTDLG_H
#define __ABOUTDLG_H
/*===========================================================================
*
* Begin Required Includes
*
*=========================================================================*/
/*===========================================================================
* End of Required Includes
*=========================================================================*/
/*===========================================================================
*
* Begin Class CAboutDlg Definition
*
*=========================================================================*/
class CAboutDlg : public CDialog {
public:
CAboutDlg();
void AddBullet (const TCHAR* pString, ...);
void AddText (const TCHAR* pString, ...);
/* Dialog Data */
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
CRichEditCtrl m_Credits;
//}}AFX_DATA
/* ClassWizard generated virtual function overrides */
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX);
//}}AFX_VIRTUAL
/* Implementation */
protected:
//{{AFX_MSG(CAboutDlg)
virtual BOOL OnInitDialog();
afx_msg void OnLink (NMHDR *pNotify, LRESULT *pResult);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
public:
};
/*===========================================================================
* End of Class CAboutDlg Definition
*=========================================================================*/
#endif
/*===========================================================================
* End of File Aboutdlg.H
*=========================================================================*/