Utility_UnloadDLL()

Examples


The Utility_UnloadDLL() function removes the specified DLL from memory.

Syntax

Utility_UnloadDLL(handle)

Parameters

handle – A long integer that is the handle of the DLL to unload. This is the value that was returned from the Utility_LoadDLL() function.

Return value

None

Comments

You will use the Utility_LoadDLL() function when a DLL must maintain state information between calls. Use this function to load the DLL into memory, make the necessary calls, and then use the Utility_UnloadDLL() function to remove the DLL from memory.


Documentation Feedback