home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / GrEdit.exe / graphex.cpp < prev    next >
C/C++ Source or Header  |  1998-02-09  |  959b  |  24 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------------
  9. USEFILE("readme.txt");
  10. USERES("GRAPHEX.res");
  11. USEFORM("GRAPHWIN.CPP", Form1);
  12. USEFORM("BMPDLG.CPP", NewBMPForm);
  13. //---------------------------------------------------------------------
  14. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  15. {
  16.     Application->Initialize();
  17.     Application->CreateForm(__classid(TForm1), &Form1);
  18.     Application->CreateForm(__classid(TNewBMPForm), &NewBMPForm);
  19.     Application->Run();
  20.  
  21.     return 0;
  22. }
  23. //---------------------------------------------------------------------------
  24.