RESOURCEMANAGER_BASIC_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-_resourcemanager_basic_information)

_RESOURCEMANAGER_BASIC_INFORMATION structure

Description

The RESOURCEMANAGER_BASIC INFORMATION structure contains information about a resource manager object.

Members

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

A caller-allocated array of characters that receives a resource manager's description string.

Remarks

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.

See also

ZwCreateResourceManager

ZwQueryInformationResourceManager