FreeLibrary v0.1.0

Source
Releases a reference to a loaded DLL.

Package: Windows

Microsoft documentation: FreeLibrary

Signature

func FreeLibrary(module_arg: *opaque) -> bool32;

Parameters

NameDescription
module_argLoaded module handle.

Returns

bool32 — nonzero on success or zero on failure. When the reference count reaches zero, the DLL is unloaded and addresses returned by GetProcAddress become invalid.

See also