#ifndef _NTLDR_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WINDOWS_8)
/**
* The LdrResRelease function releases the alternate resource module or section of an associated 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_ PCWSTR CultureNameOrId, // MAKEINTRESOURCE
_In_ ULONG Flags
);
View code on GitHubNo description available.