home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Más de 2,500 Juegos
/
CD1.iso
/
ZIPDAT
/
0828
/
0828.ZIP
/
MAGGOT.DPR
next >
Wrap
Text File
|
1998-03-08
|
338b
|
18 lines
program Maggot;
uses
Forms, SysUtils,
Main in 'MAIN.PAS' {mainscreen};
{$R *.RES}
{$D SCRNSAVE Maggot}
begin
if (ParamCount > 0) and (UpperCase(ParamStr(1)) <> '/S') then application.terminate;
if hPrevInst = 0 then
begin
Application.CreateForm(Tmainscreen, mainscreen);
Application.Run;
end;
end.