24 lines
359 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01: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();
}