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
Defined in "winbase.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/kernel32/module.c".
- Debug channel "module".