#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
);
View code on GitHubNo description available.