home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 5
/
05.iso
/
a
/
a006
/
1.ddi
/
PASEXAM.ZIP
/
INIT.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-03-11
|
212 b
|
13 lines
program Init;
uses PXEngine;
var PxErr: Integer;
begin
(* Attempt to initialize the Engine *)
PxErr := PXInit;
if PxErr <> PxSuccess then
Writeln(PxErrMsg(PxErr))
else PX(PXExit);
end.