.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH FreeLibrary 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBFreeLibrary\fR (KERNEL32.@) .SH SYNOPSIS BOOL FreeLibrary ( HINSTANCE \fIhLibModule\fR ) .SH DESCRIPTION .PP Free a dll loaded into the process address space. .SH PARAMS \fIhLibModule\fR \fB[In]\fR Handle to the dll returned by \fBLoadLibraryA(3w)\fR. .PP .SH RETURNS .PP \fBSuccess:\fR \fBTRUE\fR. The dll is removed if it is not still in use. .PP \fBFailure:\fR \fBFALSE\fR. Use \fBGetLastError(3w)\fR to determine the cause. .SH IMPLEMENTATION .PP Declared in \fB"objbase.h"\fR. .PP Implemented in \fB"dlls/kernel32/module.c"\fR. .PP Debug channel \fB"module"\fR.