PUBLIC_OBJECT_BASIC_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntifs.h

typedef struct _PUBLIC_OBJECT_BASIC_INFORMATION {
  ULONG       Attributes;
  ACCESS_MASK GrantedAccess;
  ULONG       HandleCount;
  ULONG       PointerCount;
  ULONG       Reserved[10];
} PUBLIC_OBJECT_BASIC_INFORMATION, *PPUBLIC_OBJECT_BASIC_INFORMATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntifs-_public_object_basic_information)

_PUBLIC_OBJECT_BASIC_INFORMATION structure

Description

The PUBLIC_OBJECT_BASIC_INFORMATION structure holds a subset of the full information that is available for an object.

Members

Attributes

Specifies the attributes of the object.

GrantedAccess

Specifies a mask that represents the granted access to the object.

HandleCount

Specifies the number of handles to the object.

PointerCount

Specifies the number of pointers at an object.

Reserved

Reserved for system use.