home *** CD-ROM | disk | FTP | other *** search
- 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.
-