Loadlibraryex

[DllImport("Kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)][return: MarshalAs(UnmanagedType.SysInt)]
public static extern IntPtr LoadLibraryEx(string lpLibFileName,
   IntPtr hFile,
   uint dwFlags
);

Microsoft documentation: Link

Last updated