ResolveDelayLoadsFromDll function
Forwards the work in resolving delay-loaded imports from the parent binary to a target binary.
Syntax
NTSTATUS WINAPI ResolveDelayLoadsFromDll(
_In_ PVOID ParentBase,
_In_ LPCSTR TargetDllName,
_Reserved_ ULONG Flags
);
Parameters
-
ParentBase [in]
-
The base address of the module that delay loads another binary.
-
TargetDllName [in]
-
The name of the target DLL.
-
Flags
-
Reserved; must be 0.
Return value
Returns an NTSTATUS or error code.
Return code | Description |
---|---|
STATUS_SUCCESS | The operation completed successfully |
STATUS_DLL_NOT_FOUND | The Target DLL could not be found |
The forms and significance of NTSTATUS error codes are listed in the Ntstatus.h header file available in the WDK, and are described in the WDK documentation.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 8 |
Minimum supported server |
Windows Server 2012 |
Library |
|
DLL |
|
See also