Undocumented functions of NTDLL

2OO4, 6 October


Gridstore - NonStop Storage

OBJECT_BASIC_INFORMATION
OBJECT_BASIC_INFORMATION

typedef struct _OBJECT_BASIC_INFORMATION {

ULONG Attributes; ACCESS_MASK DesiredAccess; ULONG HandleCount; ULONG ReferenceCount; ULONG PagedPoolUsage; ULONG NonPagedPoolUsage; ULONG Reserved[3]; ULONG NameInformationLength; ULONG TypeInformationLength; ULONG SecurityDescriptorLength; LARGE_INTEGER CreationTime;

} OBJECT_BASIC_INFORMATION, *POBJECT_BASIC_INFORMATION;



Structure OBJECT_BASIC_INFORMATION is returned in a result of call NtQueryObject with ObjectBasicInformation information class.
  • Attributes
  •     
  • DesiredAccess
  •     
  • HandleCount
  •     
  • ReferenceCount
  •     
  • PagedPoolUsage
  •     
  • NonPagedPoolUsage
  •     
  • Reserved[3]
  •     
  • NameInformationLength
  •     
  • TypeInformationLength
  •     
  • SecurityDescriptorLength
  •     
  • CreationTime
  •     


    Supported on system versions:
    NT 4.0,Win 2000,Win XP/2003



    Documented by:
    Tomasz Nowak



    Requirements:
    Library: ntdll.lib


    See also:
    NtQueryObject
    OBJECT_INFORMATION_CLASS