LdrGetDllFullName - NtDoc

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

// rev
/**
 * The LdrGetDllFullName routine retrieves the full file system path of a loaded module.
 *
 * \param DllHandle A handle to the loaded module (base address).
 * \param FullDllName A pointer to a UNICODE_STRING structure that receives the full path.
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
LdrGetDllFullName(
    _In_opt_ PVOID DllHandle,
    _Out_ PUNICODE_STRING FullDllName
    );

#endif
#endif
#endif

View code on GitHub

NtDoc

No description available.