![[Toc]](../../toc.gif)
![[Index]](/idx.gif)
Check if the WPS support is installed
/* Check, if the WPS support for Object REXX is installed */
if WPSSupportInstalled() = 1 then
do
say 'The WPS support for Object REXX is installed.'
end /* if */
else
do
say 'The WPS support for Object REXX is not installed.'
say '(Run "WPSINST + " to install the support)'
end /* else */
exit
/* ------------------------------------------------------------------ */
/* function: Check if the WPS support for Object REXX is installed */
/* */
/* call: thisRC = WPSSupportInstalled() */
/* */
/* returns: 0 - the support is not installed */
/* 1 - the support is installed */
/* */
/* */
WPSSupportInstalled: PROCEDURE
return ( .WPS \= '.WPS' )
Created using Inf-PHP v.2 (c) 2003 Yuri Prokushev
Created using Inf-HTML v.0.9b (c) 1995 Peter Childs