Jump to content

SpLoadFuncs: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
 
(2 intermediate revisions by 2 users not shown)
Line 14: Line 14:
  CALL spDropFuncs
  CALL spDropFuncs


[[Category:The OS/2 API Project]]
[[Category:SpUtils]]

Latest revision as of 19:03, 26 February 2017

Adds all spUtils functions.

Syntax: CALL spLoadFuncs

Example Code:

/* bootdrv.cmd (spUtils Example Code) */
/* The env variable specified as argument is set to the drive letter of */
/* the boot volume, or if called without parameter, writes it to stdout */
CALL RXFUNCADD 'spLoadFuncs','spUtils','spLoadFuncs'
CALL spLoadFuncs
PARSE ARG varname rest
IF varname= THEN SAY spGetBootdrive()
ELSE CALL VALUE varname,spGetBootdrive(),'OS2ENVIRONMENT'
CALL spDropFuncs