home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 5
/
05.iso
/
a
/
a006
/
1.ddi
/
PASEXAM.ZIP
/
NETINIT.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
|
297 b
|
16 lines
program NetInit;
uses PXEngine;
const NetDir = '';
NetType = NotOnNet ;
var PxErr: Integer;
begin
(* Attempt to initialize Engine *)
PxErr := PXNetInit(NetDir, NetType, DefUserName);
if PxErr <> PxSuccess then
Writeln(PxErrMsg(PxErr))
else PX(PXExit);
end.