00001
00007 #include "stdafx.h"
00008
00009 #include "resource.h"
00010
00011 #include "MainDlg.h"
00012
00013 CAppModule _Module;
00014
00015 int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE , LPTSTR , int )
00016 {
00017
00018
00019
00020 HRESULT hRes = ::CoInitializeEx(NULL, COINIT_MULTITHREADED);
00021 ATLASSERT(SUCCEEDED(hRes));
00022
00023
00024 ::DefWindowProc(NULL, 0, 0, 0L);
00025
00026 AtlInitCommonControls(ICC_BAR_CLASSES);
00027
00028 hRes = _Module.Init(NULL, hInstance);
00029 ATLASSERT(SUCCEEDED(hRes));
00030
00031 int nRet = 0;
00032
00033 {
00034 CMainDlg dlgMain;
00035 nRet = (int)dlgMain.DoModal();
00036 }
00037
00038 _Module.Term();
00039 ::CoUninitialize();
00040
00041 return nRet;
00042 }