LdrGetDllHandle - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTLDR_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)

NTSYSAPI
NTSTATUS
NTAPI
LdrGetDllHandle(
    _In_opt_ PWSTR DllPath,
    _In_opt_ PULONG DllCharacteristics,
    _In_ PUNICODE_STRING DllName,
    _Out_ PVOID *DllHandle
    );

#endif
#endif

View code on GitHub

pwPath

???

Unused

???

ModuleFileName

Path to file + Dll name, in NT directory format.

pHModule

Pointer to received HMODULE. See LdrLoadDll for more info.

See also