LoadLibrary function kernel32

int LoadLibrary(
  1. Pointer<Utf16> lpLibFileName
)

Loads the specified module into the address space of the calling process. The specified module may cause other modules to be loaded.

HMODULE LoadLibraryW(
  LPCWSTR lpLibFileName
);

Implementation

int LoadLibrary(Pointer<Utf16> lpLibFileName) => _LoadLibrary(lpLibFileName);