Scroll to navigation

FreeLibrary(3w) Wine API FreeLibrary(3w)

NAME

FreeLibrary (KERNEL32.@)

SYNOPSIS

BOOL FreeLibrary
(
HINSTANCE hLibModule
)
 

DESCRIPTION

Free a dll loaded into the process address space.
 

PARAMS

hLibModule [In] Handle to the dll returned by LoadLibraryA(3w).
 

RETURNS

Success: TRUE. The dll is removed if it is not still in use.
Failure: FALSE. Use GetLastError(3w) to determine the cause.
 

IMPLEMENTATION

Declared in "objbase.h".
Implemented in "dlls/kernel32/module.c".
Debug channel "module".
Oct 2012 Wine API