Update-Installer/external/win32cpp/WCE samples/DlgSubclass/DlgSubclassApp.cpp

28 lines
413 B
C++
Raw Normal View History

///////////////////////////////////////
// DlgSubclassApp.cpp
#include "resource.h"
#include "DlgSubclassApp.h"
// Definitions for the CDialogApp class
CDlgSubclassApp::CDlgSubclassApp() : m_MyDialog(IDD_DIALOG1)
{
}
BOOL CDlgSubclassApp::InitInstance()
{
//Display the Modal Dialog
m_MyDialog.DoModal();
//End the program
::PostQuitMessage(0);
return TRUE;
}
CDlgSubclassApp::~CDlgSubclassApp()
{
}