home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 May
/
Chip_2002-05_cd1.bin
/
chplus
/
cpp
/
3
/
GrEdit.exe
/
graphex.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1998-02-09
|
959b
|
24 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USEFILE("readme.txt");
USERES("GRAPHEX.res");
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;
}
//---------------------------------------------------------------------------