Jump to content

REXXshar: Difference between revisions

From EDM2
Created page with "Extends the REXX language by providing some REXX external functions. These functions are: SHRFILEOPEN handle = ShrFileOpen(filename), SHRLINEIN line = ShrLineIn(handle), SHRFI..."
 
Ak120 (talk | contribs)
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Extends the REXX language by providing some REXX external functions. These functions are: SHRFILEOPEN handle = ShrFileOpen(filename), SHRLINEIN line = ShrLineIn(handle), SHRFILEEOF if ShrFileEOF(handle) then, SHRFILECLOSE rc = ShrFileClose(handle).
Extends the REXX language by providing some REXX external functions.
 
;Files
;Files
* rexxshar.dll
* rexxshar.dll


==Functions==
==Functions==
* SHRFILEOPEN
* SHRFILEOPEN - handle = ShrFileOpen(filename)
* SHRLINEIN
* SHRLINEIN - line = ShrLineIn(handle)
* SHRFILEEOF
* SHRFILEEOF - ShrFileEOF(handle)
* SHRFILECLOSE
* SHRFILECLOSE - rc = ShrFileClose(handle)


==Links==
==Links==
* [http://www.os2site.com/sw/dev/rexx/libs/rexxshar.zip]
* [http://www.os2site.com/sw/dev/rexx/libs/rexxshar.zip]
[[Category:REXX Function Library]]

Latest revision as of 17:28, 14 September 2022

Extends the REXX language by providing some REXX external functions.

Files
  • rexxshar.dll

Functions

  • SHRFILEOPEN - handle = ShrFileOpen(filename)
  • SHRLINEIN - line = ShrLineIn(handle)
  • SHRFILEEOF - ShrFileEOF(handle)
  • SHRFILECLOSE - rc = ShrFileClose(handle)

Links