44 lines
999 B
C
44 lines
999 B
C
|
// ex02dlg.h : header file
|
||
|
//
|
||
|
#include "arclib.h"
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CEx02mfcDlg dialog
|
||
|
|
||
|
class CEx02mfcDlg : public CDialog
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CEx02mfcDlg(CWnd* pParent = NULL); // standard constructor
|
||
|
|
||
|
// Dialog Data
|
||
|
//{{AFX_DATA(CEx02mfcDlg)
|
||
|
enum { IDD = IDD_EX02MFC_DIALOG };
|
||
|
//}}AFX_DATA
|
||
|
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(CEx02mfcDlg)
|
||
|
public:
|
||
|
virtual BOOL DestroyWindow();
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
protected:
|
||
|
HICON m_hIcon;
|
||
|
|
||
|
// Generated message map functions
|
||
|
//{{AFX_MSG(CEx02mfcDlg)
|
||
|
virtual BOOL OnInitDialog();
|
||
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
||
|
afx_msg void OnPaint();
|
||
|
afx_msg HCURSOR OnQueryDragIcon();
|
||
|
afx_msg void OnExit();
|
||
|
afx_msg void OnExpand();
|
||
|
afx_msg void OnAbout();
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|