home *** CD-ROM | disk | FTP | other *** search
- /* REXX */
- if 0 < RxFuncQuery('SysLoadFuncs') THEN DO;
- Call rxfuncadd 'SysLoadFuncs','REXXUTIL','SysLoadFuncs';
- Call SysLoadFuncs;
- END;
- RC=RXFUNCADD('GetBootDrive','GBOOTDRV','GetBootDrive');
- say 'RxFuncAdd RC='RC;
- BootDrive=GetBootDrive();
- say 'GetBootDrive RC='RC;
- say 'BootDrive='BootDrive;
- Call RxFuncDrop 'GetBootDrive';
- exit;