home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- USERES("DEMOCB3.res");
- USEFORM("DEMOCBF.cpp", frmDemoCB);
- USEFORMNS("LHPRGDLG.pas", Lhprgdlg, dlgArchiverProgress);
- USEUNIT("ARCSTUBS.CPP");
- USEUNIT("LHPRSTUB.CPP");
- //---------------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- try
- {
- Application->Initialize();
- Application->CreateForm(__classid(TfrmDemoCB), &frmDemoCB);
- Application->CreateForm(__classid(TdlgArchiverProgress), &dlgArchiverProgress);
- Application->Run();
- }
- catch (Exception &exception)
- {
- Application->ShowException(&exception);
- }
- return 0;
- }
- //---------------------------------------------------------------------------
-