mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 07:01:32 +00:00
28 lines
397 B
C++
28 lines
397 B
C++
|
/////////////////////////////////////////////////
|
||
|
//App.cpp - Definitions for the CDialogApp class
|
||
|
|
||
|
#include "dialog.h"
|
||
|
#include "resource.h"
|
||
|
#include "DialogApp.h"
|
||
|
|
||
|
|
||
|
CDialogApp::CDialogApp() : MyDialog(IDD_COMCTLS)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
BOOL CDialogApp::InitInstance()
|
||
|
{
|
||
|
//Display the Modal Dialog
|
||
|
MyDialog.DoModal();
|
||
|
|
||
|
//End the program
|
||
|
::PostQuitMessage(0);
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
CDialogApp::~CDialogApp()
|
||
|
{
|
||
|
}
|
||
|
|