You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
528 B
31 lines
528 B
// UI.cpp : main source file for UI.exe
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "WizardSheet.h"
|
|
|
|
|
|
CAppModule _Module;
|
|
|
|
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE /*hPrevInstance*/, LPSTR /*wszCmdLine*/, int /*nCmdShow*/ )
|
|
{
|
|
HRESULT hRes = ::CoInitialize(NULL);
|
|
ATLASSERT(SUCCEEDED(hRes));
|
|
|
|
hRes = _Module.Init(NULL, hInstance);
|
|
ATLASSERT(SUCCEEDED(hRes));
|
|
|
|
// This is the shared data
|
|
|
|
CWizardSheet Sheet;
|
|
|
|
Sheet.DoModal();
|
|
|
|
_Module.Term();
|
|
::CoUninitialize();
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
|