home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipComp.exe / XceedZip.Cab / F112567_ZipManager.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-15  |  655 b   |  23 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USERES("ZipManager.res");
  5. USEUNIT("Tools.cpp");
  6. USEFORM("MainMn.cpp", MainFormFm);
  7. //---------------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.   try
  11.   {
  12.     Application->Initialize();
  13.     Application->CreateForm(__classid(TMainFormFm), &MainFormFm);
  14.     Application->Run();
  15.   }
  16.   catch (Exception &exception)
  17.   {
  18.     Application->ShowException(&exception);
  19.   }
  20.   return 0;
  21. }
  22. //---------------------------------------------------------------------------
  23.