IBM OS/2 LAN Server REXX Utility DLL


Inf-HTML [About][Toc][Index] 0.9b (c) 1995 Peter Childs


How to use


To use LSRXUT.DLL functions, you must have installed as a minimum OS/2 2.0 
and IBM LAN Server 3.0 or IBM OS/2 LAN Requester 3.0. 
Before you start, copy either the file LSRXUT.30 or LSRXUT.40 to 
LSRXUT.DLL. 
The LSRXUT.DLL must be copied to any subdirectory that is included in the 
CONFIG.SYS LIBPATH= parameter. 
To validate the correct installation of the LSRXUT.DLL the following REXX 
procedure can be used:   

/************************************************/
Say 'Testing LSRXUT.DLL access'

call RxFuncAdd 'LoadLsRxutFuncs', 'LSRXUT', 'LoadLsRxutFuncs'
call LoadLsRxutFuncs

Say 'LoadLsRxutFuncs is complete.'

version = LsRxutVer()
say 'Version is ' version

call DropLsRxutFuncs

exit 0


An example output of the test function would be like the following:   

Testing LSRXUT.DLL access
LoadLsRxutFuncs is complete.
Version is  2.00.00


Inf-HTML End Run - Successful