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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static bool FreeLibrary(
	IntPtr handle
)
Public Shared Function FreeLibrary ( _
	handle As IntPtr _
) As Boolean
public:
static bool FreeLibrary(
	IntPtr handle
)

Parameters

handle
IntPtr
The handle to the library

Return Value

If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.

See Also