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.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 3.0.0.2161 (3.0.0.2161)
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