mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
827 B
39 lines
827 B
// welcomed.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CWelcomeDlg dialog
|
|
|
|
class CWelcomeDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CWelcomeDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
BOOL Create();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CWelcomeDlg)
|
|
enum { IDD = IDD_WELCOME_NTS };
|
|
CStatic m_WelcomeText;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CWelcomeDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CWelcomeDlg)
|
|
virtual void OnOK();
|
|
virtual void OnCancel();
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|