Source code of Windows XP (NT5)
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
359 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();
}