home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D
/
SNPTST20.ZIP
/
TestDLL
/
TestDLL.dpr
< prev
next >
Wrap
Text File
|
1998-07-25
|
193b
|
14 lines
program TestDLL;
uses
Forms,
TestMain in 'TestMain.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.