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

  1. #include "layoutui.hxx"
  2. INT WINAPI WinMain(
  3. HINSTANCE hInstance,
  4. HINSTANCE hPrevInstance,
  5. LPSTR lpCmdLine,
  6. INT nCmdShow
  7. )
  8. {
  9. CLayoutApp *pLayoutApp;
  10. pLayoutApp = new CLayoutApp(hInstance);
  11. if( !pLayoutApp )
  12. return 0;
  13. if( !pLayoutApp->InitApp() )
  14. return 0;
  15. return pLayoutApp->DoAppMessageLoop();
  16. }