// wdm.h
typedef struct _RESOURCEMANAGER_BASIC_INFORMATION {
GUID ResourceManagerId;
ULONG DescriptionLength;
WCHAR Description[1];
} RESOURCEMANAGER_BASIC_INFORMATION, *PRESOURCEMANAGER_BASIC_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The RESOURCEMANAGER_BASIC INFORMATION structure contains information about a resource manager object.
ResourceManagerIdA GUID that KTM assigned to the resource manager.
DescriptionLengthThe length, in bytes, of the character array that the Description member provides.
DescriptionA 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.
ZwQueryInformationResourceManager