graphex.cpp
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:
Delphi/CppBuilder
开发平台:
C++ Builder
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1998-2002 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USEFILE("readme.txt");
- USERES("GRAPHEX.res");
- USEFORM("GRAPHWIN.CPP", FormMain);
- USEFORM("BMPDLG.CPP", NewBMPForm);
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->CreateForm(__classid(TFormMain), &FormMain);
- Application->CreateForm(__classid(TNewBMPForm), &NewBMPForm);
- Application->Run();
- return 0;
- }
- //---------------------------------------------------------------------------