#ifndef _NTLDR_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WINDOWS_8)
/**
* The LdrResGetRCConfig function retrieves the MUI configuration (resource type 3) for a DLL.
*
* \param DllHandle A handle to the DLL.
* \param Length The length of the configuration buffer.
* \param Config A buffer to receive the configuration.
* \param Flags Flags for the operation.
* \param AlternateResource Indicates if an alternate resource should be loaded.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
LdrResGetRCConfig(
_In_ PVOID DllHandle,
_In_opt_ SIZE_T Length,
_Out_writes_bytes_opt_(Length) PMUI_RC_CONFIG* Config,
_In_ ULONG Flags,
_In_ BOOLEAN AlternateResource // LdrLoadAlternateResourceModule
);
View code on GitHubNo description available.