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

  1. /*===========================================================================*/
  2. /* Getting Started sample using The Xceed Zip Compression Library 4          */
  3. /* For C++Builder 3                                                          */
  4. /* Copyright (c) 1999 Xceed Software Inc.                                    */
  5. /*===========================================================================*/
  6.  
  7. //---------------------------------------------------------------------------
  8. #include <vcl.h>
  9. #pragma hdrstop
  10. USERES("Started.res");
  11. USEFORM("Main.cpp", frmMain);
  12. //---------------------------------------------------------------------------
  13. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  14. {
  15.     try
  16.     {
  17.         Application->Initialize();
  18.         Application->CreateForm(__classid(TfrmMain), &frmMain);
  19.         Application->Run();
  20.     }
  21.     catch (Exception &exception)
  22.     {
  23.         Application->ShowException(&exception);
  24.     }
  25.     return 0;
  26. }
  27. //---------------------------------------------------------------------------
  28.