Jump to content

UsbDropFuncs: Difference between revisions

From EDM2
W.m.brul (talk | contribs)
add description, syntax and return code
W.m.brul (talk | contribs)
Line 32: Line 32:


==Related Functions==
==Related Functions==
* [[UsbLoadFuncs]]


[[Category:USBCalls]]
[[Category:USBCalls]]

Revision as of 19:13, 12 February 2017

Description

Drops all functions prefixed with RxUsb at once.

Syntax

rc = UsbDropFuncs()

Parameters

Return Code

empty string

Errors

Remarks

Example Code

/* add UsbDropFuncs */
rc = RxFuncAdd('UsbDropFuncs','usbcalls','UsbdropFuncs')
say '+UsbDropFuncs(),RC=0x'd2x(rc)

/* invoke UsbDropFuncs */
rc = ('' <> UsbDropFuncs())
say '*UsbDropFuncs(),RC=0x'b2x(rc)

/* drop UsbDropFuncs */
rc = RxFuncDrop('UsbDropFuncs')
say '-UsbDropFuncs(),RC=0x'd2x(rc)

Related Functions