.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH LoadLibraryExA 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBLoadLibraryExA\fR (KERNEL32.@) .SH SYNOPSIS HMODULE LoadLibraryExA ( LPCSTR \fIlibname\fR, HANDLE \fIhfile\fR, DWORD \fIflags\fR ) .SH DESCRIPTION .PP Load a dll file into the process address space. .SH PARAMS \fIlibname\fR \fB[In]\fR Name of the file to load. .PP \fIhfile\fR \fB[In]\fR Reserved, must be \fB0.\fR .PP \fIflags\fR \fB[In]\fR Flags for loading the dll. .PP .SH RETURNS .PP \fBSuccess:\fR A handle to the loaded dll. .PP \fBFailure:\fR A \fBNULL\fR handle. Use \fBGetLastError(3w)\fR to determine the cause. .SH NOTES .PP The \fBHFILE\fR parameter is not used and marked reserved in the \fBSDK\fR. I can only guess that it should force a file to be mapped, but I rather ignore the parameter because it would be extremely difficult to integrate this with different types of module representations. .SH IMPLEMENTATION .PP Declared in \fB"winbase.h"\fR. .PP Implemented in \fB"dlls/kernel32/module.c"\fR. .PP Debug channel \fB"module"\fR.