Unregisters an adlib function.
AdlibUnRegister ( ["function"] )
| function | [optional] The name of the adlib function to be Unregistered. See remarks for more information. |
AdlibRegister("MyAdlib")
;...
AdlibUnRegister("MyAdlib")
Func MyAdlib()
;... execution must be non blocking, avoid ...Wait(), MsgBox(), InputBox() functions
EndFunc ;==>MyAdlib