home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Spezial
/
SPEZIAL2_97.zip
/
SPEZIAL2_97.iso
/
ANWEND
/
ONLINE
/
SREFPRC1
/
PMPRINTF.SRF
< prev
next >
Wrap
Text File
|
1997-07-06
|
439b
|
22 lines
/* Pre processiong for rexxlib pmprintf
uses environment variables.
Also, if nofile=1, then don't write to output file (used by commonl log to screen
echoer)
*/
pmprintf_sref:
parse arg aval,nofile
if symbol('serverport')<>'VAR' then
sport=extract('serverport')
else
sport=serverport
/* dump to the pmprintf thread */
goober='SREF_'||sport||'_PMPRINTF'
a=rxqueue('s',goober)
queue nofile||','aval
return 0