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.
23 lines
382 B
23 lines
382 B
#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();
|
|
}
|
|
|