home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipComp.exe / XceedEncoding.Cab / F112883_Manager.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-05-02  |  720 b   |  23 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USERES("Manager.res");
  5. USEFORM("unMain.cpp", frmManager);
  6. USEUNIT("C:\Program Files\Borland\CBuilder4\Imports\XCEEDBINARYENCODINGLib_TLB.cpp");
  7. //---------------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.   try
  11.   {
  12.      Application->Initialize();
  13.      Application->CreateForm(__classid(TfrmManager), &frmManager);
  14.      Application->Run();
  15.   }
  16.   catch (Exception &exception)
  17.   {
  18.      Application->ShowException(&exception);
  19.   }
  20.   return 0;
  21. }
  22. //---------------------------------------------------------------------------
  23.