RELEASES THE MEMORY USED BY A DLL
ACTION
The command DLL_OFF releases the memory used by a DLL (Dynamic Link Library) when it is not used any longer.
SYNTAX:
DLL_OFF
USE ERROR EXAMPLE
dim v,r
rem DLL loaded to the memory
dll_on "my_dll.dll"
rem call a function of the DLL with 2 parameters
v=23
r=dll_call2("func", 19, v)
rem print the result
print v
rem release the memory
dll_off
DLL_OFF
DLL_OFF
SEE ALSO
DLL_ON
DLL_CALL0()
DLL_CALL1()
DLL_CALL2()
DLL_CALL3()
DLL_CALL4()
DLL_CALL5()
DLL_CALL6()