Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 365 Bytes

loadlibraryex.md

File metadata and controls

12 lines (10 loc) · 365 Bytes

LoadLibraryExW

[DllImport("KERNEL32.dll", ExactSpelling = true, SetLastError = true)]
[DefaultDllImportSearchPaths(DllImportSearchPath.System32)]
public static extern HMODULE LoadLibraryExW(
    PCWSTR lpLibFileName,
    HANDLE hFile,
    LOAD_LIBRARY_FLAGS dwFlags);

load_library_flags.md