home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USEFORM("graphwin.cpp", Form1);
- USEFORM("bmpdlg.cpp", NewBMPForm);
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->CreateForm(__classid(TForm1), &Form1);
- Application->CreateForm(__classid(TNewBMPForm), &NewBMPForm);
- Application->Run();
-
- return 0;
- }
- //---------------------------------------------------------------------------
-