windows-nt/Source/XPSP1/NT/com/ole32/stg/async/layoutui/laymain.cxx

24 lines
359 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include "layoutui.hxx"
INT WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
INT nCmdShow
)
{
CLayoutApp *pLayoutApp;
pLayoutApp = new CLayoutApp(hInstance);
if( !pLayoutApp )
return 0;
if( !pLayoutApp->InitApp() )
return 0;
return pLayoutApp->DoAppMessageLoop();
}