Scope
AboutDlg.cpp
1 #include "stdafx.h"
2 #include "aboutdlg.h"
3 #include "resource.h"
4 
5 namespace scope {
6  namespace gui {
7 
8 LRESULT CAboutDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) {
9  CenterWindow(GetParent());
10  return TRUE;
11 }
12 
13 LRESULT CAboutDlg::OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) {
14  EndDialog(wID);
15  return 0;
16 }
17 
18 }}
This is the include file for standard system include files, or project specific include files that ar...