LoadLibraryA v0.1.0

Source
Loads a DLL into the calling process.

Package: Windows

Microsoft documentation: LoadLibraryA

Signature

func LoadLibraryA(
    libFileName: *char8
) -> *opaque;

Parameters

NameDescription
libFileNameNull-terminated ANSI DLL path/name.

Returns

*opaque — a module handle on success or null on failure. Release a successful handle with FreeLibrary. Use a trusted, explicit path when the name is configurable to avoid unintended DLL search results.

See also