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.0.0.0 (2.0.0.0)

Syntax

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

Parameters

handle
Type: System..::.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