Jump to content

UsbLoadFuncs

From EDM2
Revision as of 18:23, 24 January 2017 by W.m.brul (talk | contribs) (add description, syntax and retrun code)

Description

Adds all functions prefixed with RxUsb at once.

Syntax

rc = UsbLoadFuncs()

Parameters

Return Code

empty string

Errors

Remarks

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)

Related Functions