home *** CD-ROM | disk | FTP | other *** search
- /*===========================================================================*/
- /* Getting Started sample using The Xceed Zip Compression Library 4 */
- /* For C++Builder 3 */
- /* Copyright (c) 1999 Xceed Software Inc. */
- /*===========================================================================*/
-
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- USERES("Started.res");
- USEFORM("Main.cpp", frmMain);
- //---------------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->CreateForm(__classid(TfrmMain), &frmMain);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- return 0;
- }
- //---------------------------------------------------------------------------
-