LoadLibraryEx function kernel32

int LoadLibraryEx(
  1. Pointer<Utf16> lpLibFileName,
  2. int hFile,
  3. int dwFlags
)

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

HMODULE LoadLibraryExW(
  [in] LPCWSTR lpLibFileName,
       HANDLE  hFile,
  [in] DWORD   dwFlags
);

Implementation

int LoadLibraryEx(Pointer<Utf16> lpLibFileName, int hFile, int dwFlags) =>
    _LoadLibraryEx(lpLibFileName, hFile, dwFlags);