Unregisters an adlib function.
AdlibUnRegister( [ "function" ] )
Parameters
| function | [optional] The name of the adlib function to be Unregistered. See remarks for more information. |
Return Value
Remarks
If the function name is not specified then the last registered function will be unregistered.
Related
AdlibRegister
Example
AdlibRegister("MyAdlib")
;...
AdlibUnRegister("MyAdlib")
Func MyAdlib()
;... execution must be non blocking, avoid ...Wait(), MsgBox(), InputBox() functions
EndFunc