UsbLoadFuncs: Difference between revisions
Appearance
mNo edit summary |
|||
| Line 1: | Line 1: | ||
Adds all functions prefixed with RxUsb at once. | Adds all functions prefixed with RxUsb at once. | ||
==Syntax== | ==Syntax== | ||
rc = UsbLoadFuncs() | |||
rc = UsbLoadFuncs() | |||
;Parameters:none | |||
;Return Code:empty string | |||
empty string | |||
==Example Code== | ==Example Code== | ||
Latest revision as of 23:09, 28 October 2017
Adds all functions prefixed with RxUsb at once.
Syntax
rc = UsbLoadFuncs()
- Parameters
- none
- Return Code
- empty string
Example Code
/* add UsbLoadFuncs */
rc = RxFuncAdd('UsbLoadFuncs','usbcalls','UsbLoadFuncs')
say '+UsbLoadFuncs(),RC=0x'd2x(rc)
/* invoke UsbLoadFuncs */
rc = ('' <> UsbLoadFuncs())
say '*UsbLoadFuncs(),RC=0x'b2x(rc)
/* drop UsbLoadFuncs */
rc = RxFuncDrop('UsbLoadFuncs')
say '-UsbLoadFuncs(),RC=0x'd2x(rc)