// 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 referenceNo description available.
The PUBLIC_OBJECT_BASIC_INFORMATION structure holds a subset of the full information that is available for an object.
AttributesSpecifies the attributes of the object.
GrantedAccessSpecifies a mask that represents the granted access to the object.
HandleCountSpecifies the number of handles to the object.
PointerCountSpecifies the number of pointers at an object.
ReservedReserved for system use.