Page Menu
Home
desp's stash
Search
Configure Global Search
Log In
Files
F629050
main.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
main.cpp
View Options
#include
<atlbase.h> // base ATL classes
#include
<atlapp.h> // base WTL classes
CAppModule
_Module
;
#include
"MainGui.h"
MainGui
*
pMainGui
=
NULL
;
// for Logger
int
APIENTRY
_tWinMain
(
HINSTANCE
hInstance
,
HINSTANCE
hPrevInstance
,
LPTSTR
lpCmdLine
,
int
nCmdShow
)
{
HRESULT
hRes
=
CoInitialize
(
NULL
);
// If you are running on NT 4.0 or higher you can use the following call instead to
// make the EXE free threaded. This means that calls come in on a random RPC thread.
//HRESULT hRes = ::CoInitializeEx(NULL, COINIT_MULTITHREADED);
ATLASSERT
(
SUCCEEDED
(
hRes
));
// this resolves ATL window thunking problem when Microsoft Layer for Unicode (MSLU) is used
DefWindowProc
(
NULL
,
0
,
0
,
0L
);
AtlInitCommonControls
(
ICC_BAR_CLASSES
);
// add flags to support other controls
hRes
=
_Module
.
Init
(
NULL
,
hInstance
);
ATLASSERT
(
SUCCEEDED
(
hRes
));
int
nRet
=
0
;
// BLOCK: Run application
{
MainGui
dlgMain
(
hInstance
);
pMainGui
=
&
dlgMain
;
// o_O
nRet
=
dlgMain
.
DoModal
();
}
_Module
.
Term
();
CoUninitialize
();
return
nRet
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Apr 24, 10:28 AM (1 h, 29 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
25/c3/1665d438403652f668bd62618a14
Attached To
rSCY Scylla
Event Timeline
Log In to Comment