#ifndef _NTLDR_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WIN8)
/**
* The LdrResRelease function releases a resource in a DLL.
*
* @param DllHandle A handle to the DLL.
* @param CultureNameOrId An optional culture name or ID.
* @param Flags Flags for the operation.
* @return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
LdrResRelease(
_In_ PVOID DllHandle,
_In_opt_ ULONG_PTR CultureNameOrId, // MAKEINTRESOURCE
_In_ ULONG Flags
);
View code on GitHub
No description available.