ToolboxFreeLibrary Method |
http://www.emgu.com
Decrements the reference count of the loaded dynamic-link library (DLL). When the reference count reaches zero, the module is unmapped from the address space of the calling process and the handle is no longer valid
Namespace:
Emgu.TF.Util
Assembly:
Emgu.TF.World (in Emgu.TF.World.dll) Version: 1.13.1.435 (1.13.1.435)
Syntaxpublic static bool FreeLibrary(
IntPtr handle
)
Public Shared Function FreeLibrary (
handle As IntPtr
) As Boolean
public:
static bool FreeLibrary(
IntPtr handle
)
static member FreeLibrary :
handle : IntPtr -> bool
Parameters
- handle
- Type: SystemIntPtr
The handle to the library
Return Value
Type:
BooleanIf the function succeeds, the return value is true. If the function fails, the return value is false.
See Also