DLL_OFF

DLL_OFF

RELEASES THE MEMORY USED BY A DLL

  • Type: Command
  • Parameter: 1
  • Group: 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

  • The command DLL_OFF is used to release the memory after loading a DLL.

ERROR

  • If no DLL has been loaded to the memory.

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

SEE ALSO

DLL_ON

DLL_CALL0()

DLL_CALL1()

DLL_CALL2()

DLL_CALL3()

DLL_CALL4()

DLL_CALL5()

DLL_CALL6()