FreeLibrary v0.1.0
Releases a reference to a loaded DLL.
Package: Windows
Microsoft documentation: FreeLibrary
Signature
func FreeLibrary(module_arg: *opaque) -> bool32;
Parameters
| Name | Description |
|---|---|
module_arg | Loaded 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
LoadLibraryA— load a moduleWindows— the package overview