home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++ Builder
- //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USEFORM("lookup.cpp", fmLookup);
- USERES("lookupex.res");
- USEFORM("About.cpp", fmAbout);
- USEDATAMODULE("maindata.cpp", DMMain);
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->CreateForm(__classid(TfmLookup), &fmLookup);
- Application->CreateForm(__classid(TDMMain), &DMMain);
- Application->Run();
-
- return 0;
- }
- //---------------------------------------------------------------------------
-