home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
delphi2
/
wowsrc.exe
/
WOW.DPR
< prev
next >
Wrap
Text File
|
1995-12-11
|
952b
|
41 lines
program Wow;
uses
Forms,
Classes,
SysUtils,
Dialogs,
Ssave in 'SSAVE.PAS' {Scrn},
Msgdefs in 'MSGDEFS.PAS' {SetupMsg},
Globals in 'GLOBALS.PAS',
Getpass in 'GETPASS.PAS' {Wpwd},
Winpwd in 'WINPWD.PAS',
Newpass in 'NEWPASS.PAS' {ChPwd},
Selectss in 'SELECTSS.PAS' {SsSelect},
Codemsg in 'CODEMSG.PAS',
Codeball in 'CODEBALL.PAS',
Spotdefs in 'SPOTDEFS.PAS' {SetupSpot},
Balldefs in 'BALLDEFS.PAS' {SetupBalls},
Codespot in 'CODESPOT.PAS',
Picdlg in 'PICDLG.PAS' {BitmapDlg},
Bitmap in 'BITMAP.PAS';
{$R *.RES}
{$D SCRNSAVE : Wild Screen Saver}
Var
CmdLine : String;
begin
If HPrevInst <> 0 then Exit;
CmdLine := UpperCase(ParamStr(1));
if (CmdLine = '/S') or
(CmdLine = '') then begin
Application.Title := 'Wild Screen Saver';
Application.CreateForm(TScrn, Scrn);
end
else
Application.CreateForm(TSsSelect, SsSelect);
Application.Run;
end.