1234567891011121314151617181920 |
- #include "stdafx.h"
- #include "resource.h"
- #include "aboutdlg.h"
- LRESULT CAboutDlg::OnInitDialog(UINT , WPARAM , LPARAM , BOOL& )
- {
- CenterWindow(GetParent());
- return TRUE;
- }
- LRESULT CAboutDlg::OnCloseCmd(WORD , WORD wID, HWND , BOOL& )
- {
- EndDialog(wID);
- return 0;
- }
|