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.Lite.Net45 (in Emgu.TF.Lite.Net45.dll) Version: 1.14.0.572 (1.14.0.572)
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