#ifndef _NTLDR_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WIN8)
// rev from ResolveDelayLoadsFromDll
/**
* Forwards the work in resolving delay-loaded imports from the parent binary to a target binary.
*
* @param [in] ParentModuleBase The base address of the module that delay loads another binary.
* @param [in] TargetDllName The name of the target DLL.
* @param [in] Flags Reserved; must be 0.
* @return NTSTATUS Successful or errant status.
* @remarks https://learn.microsoft.com/en-us/windows/win32/devnotes/resolvedelayloadsfromdll
*/
NTSYSAPI
NTSTATUS
NTAPI
LdrResolveDelayLoadsFromDll(
_In_ PVOID ParentModuleBase,
_In_ PCSTR TargetDllName,
_Reserved_ ULONG Flags
);
View code on GitHub
No description available.