31 lines
564 B
C
31 lines
564 B
C
|
// AboutDlg.h
|
|||
|
|
|||
|
#ifndef _ABOUTDLG_H
|
|||
|
#define _ABOUTDLG_H
|
|||
|
|
|||
|
class CAboutDlg : public CDialog
|
|||
|
{
|
|||
|
public:
|
|||
|
CAboutDlg();
|
|||
|
|
|||
|
// <20>_<EFBFBD>C<EFBFBD>A<EFBFBD><41><EFBFBD>O <20>f<EFBFBD>[<5B>^
|
|||
|
//{{AFX_DATA(CAboutDlg)
|
|||
|
enum { IDD = IDD_ABOUTBOX };
|
|||
|
//}}AFX_DATA
|
|||
|
|
|||
|
// ClassWizard <20>͉<EFBFBD><CD89>z<EFBFBD><EFBFBD><D690>̃I<CC83>[<5B>o<EFBFBD>[<5B><><EFBFBD>C<EFBFBD>h<EFBFBD><EFBFBD><F090B690><EFBFBD><EFBFBD>܂<EFBFBD>
|
|||
|
//{{AFX_VIRTUAL(CAboutDlg)
|
|||
|
protected:
|
|||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20>̃T<CC83>|<7C>[<5B>g
|
|||
|
//}}AFX_VIRTUAL
|
|||
|
|
|||
|
// <20>C<EFBFBD><43><EFBFBD>v<EFBFBD><76><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>e<EFBFBD>[<5B>V<EFBFBD><56><EFBFBD><EFBFBD>
|
|||
|
protected:
|
|||
|
//{{AFX_MSG(CAboutDlg)
|
|||
|
virtual BOOL OnInitDialog();
|
|||
|
//}}AFX_MSG
|
|||
|
DECLARE_MESSAGE_MAP()
|
|||
|
};
|
|||
|
|
|||
|
#endif
|