Source code of Windows XP (NT5)
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.
|
|
// aboutdlg.h : interface of the CAboutDlg class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_ABOUTDLG_H__D257AE23_8649_4EA5_8E06_7D02205AEA28__INCLUDED_)
#define AFX_ABOUTDLG_H__D257AE23_8649_4EA5_8E06_7D02205AEA28__INCLUDED_
class CAboutDlg : public CDialogImpl<CAboutDlg> { public: enum { IDD = IDD_ABOUTBOX };
BEGIN_MSG_MAP(CAboutDlg) MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog) COMMAND_ID_HANDLER(IDOK, OnCloseCmd) COMMAND_ID_HANDLER(IDCANCEL, OnCloseCmd) END_MSG_MAP()
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) { CenterWindow(GetParent()); return TRUE; }
LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { EndDialog(wID); return 0; } };
#endif // !defined(AFX_ABOUTDLG_H__D257AE23_8649_4EA5_8E06_7D02205AEA28__INCLUDED_)
|