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.
24 lines
608 B
24 lines
608 B
// Copyright (c) 1997-1999 Microsoft Corporation
|
|
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;
|
|
}
|
|
};
|