home *** CD-ROM | disk | FTP | other *** search
- #include "stdafx.h"
- #include "resource.h"
- #include "about.h"
-
- /////////////////////////////////////////////////////////////////////////////
- // CAboutDlg dialog used for App About
- #define BASE CDialog
- #define THIS CAboutDlg
-
- //IMPLEMENT_DYNCREATE(CAboutDlg, CTabDialog)
- CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
- {
- //{{AFX_DATA_INIT(CAboutDlg)
- //}}AFX_DATA_INIT
- }
- BOOL THIS::OnInitDialog()
- {
- BASE::OnInitDialog();
- CenterWindow();
-
- return TRUE;
- }
- void THIS::DoDataExchange(CDataExchange* pDX)
- {
- BASE::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CAboutDlg)
- //}}AFX_DATA_MAP
- }
-
- BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
- //{{AFX_MSG_MAP(CAboutDlg)
- // No message handlers
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-