home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP11 / DEBUGTST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  594 b   |  17 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl\vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USERES("DebugTst.res");
  6. USEFORM("DbgMain.cpp", MainForm);
  7. //---------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.   Application->Initialize();
  11.   Application->CreateForm(__classid(TMainForm), &MainForm);
  12.   Application->Run();
  13.  
  14.   return 0;
  15. }
  16. //---------------------------------------------------------------------------
  17.