Scroll to navigation

LoadLibraryA(3w) Wine API LoadLibraryA(3w)

NAME

LoadLibraryA (KERNEL32.@)

SYNOPSIS

HMODULE LoadLibraryA
(
LPCSTR libname
)
 

DESCRIPTION

Load a dll file into the process address space.
 

PARAMS

libname [In] Name of the file to load.
 

RETURNS

Success: A handle to the loaded dll.
Failure: A NULL handle. Use GetLastError(3w) to determine the cause.
 

NOTES

See LoadLibraryExA(3w).
 

IMPLEMENTATION

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