home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / GRAPHEX.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-20  |  668 b   |  18 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("graphwin.cpp", Form1);
  6. USEFORM("bmpdlg.cpp", NewBMPForm);
  7. //---------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.     Application->Initialize();
  11.     Application->CreateForm(__classid(TForm1), &Form1);
  12.     Application->CreateForm(__classid(TNewBMPForm), &NewBMPForm);
  13.     Application->Run();
  14.  
  15.     return 0;
  16. }
  17. //---------------------------------------------------------------------------
  18.