RESOURCEMANAGER_BASIC_INFORMATION structure (wdm.h)
The RESOURCEMANAGER_BASIC INFORMATION structure contains information about a resource manager object.
typedef struct _RESOURCEMANAGER_BASIC_INFORMATION {
GUID ResourceManagerId;
ULONG DescriptionLength;
WCHAR Description[1];
} RESOURCEMANAGER_BASIC_INFORMATION, *PRESOURCEMANAGER_BASIC_INFORMATION;
ResourceManagerId
A GUID that KTM assigned to the resource manager.
DescriptionLength
The length, in bytes, of the character array that the Description member provides.
Description[1]
A caller-allocated array of characters that receives a resource manager's description string.
The RESOURCEMANAGER_BASIC INFORMATION structure is used with the ZwQueryInformationResourceManager routine.
The resource manager's description string, which the Description member receives, is the description that the resource manager previously specified when it called ZwCreateResourceManager.
Requirement | Value |
---|---|
Minimum supported client | Available in Windows Vista and later operating system versions. |
Header | wdm.h (include Wdm.h, Ntddk.h, Ntifs.h) |