// PropertySheet.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "PropertySheet.h" #include "Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CApp BEGIN_MESSAGE_MAP(CApp, CWinApp) //{{AFX_MSG_MAP(CApp) //}}AFX_MSG END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CApp construction CApp::CApp() { } ///////////////////////////////////////////////////////////////////////////// // The one and only CApp object CApp theApp; ///////////////////////////////////////////////////////////////////////////// // CApp initialization BOOL CApp::InitInstance() { CDlg dlg; m_pMainWnd = &dlg; dlg.DoModal(); return FALSE; }