Add OBJECT_BASIC_INFORMATION to winternl.h.

This commit is contained in:
Vitaliy Margolen 2005-10-26 10:11:23 +00:00 committed by Alexandre Julliard
parent eb8478002d
commit af53827901
1 changed files with 14 additions and 0 deletions

View File

@ -915,6 +915,20 @@ typedef struct _OBJECT_DATA_INFORMATION {
BOOLEAN ProtectFromClose;
} OBJECT_DATA_INFORMATION, *POBJECT_DATA_INFORMATION;
typedef struct _OBJECT_BASIC_INFORMATION {
ULONG Attributes;
ACCESS_MASK GrantedAccess;
ULONG HandleCount;
ULONG PointerCount;
ULONG PagedPoolUsage;
ULONG NonPagedPoolUsage;
ULONG Reserved[3];
ULONG NameInformationLength;
ULONG TypeInformationLength;
ULONG SecurityDescriptorLength;
LARGE_INTEGER CreateTime;
} OBJECT_BASIC_INFORMATION, *POBJECT_BASIC_INFORMATION;
typedef struct _PROCESS_BASIC_INFORMATION {
#ifdef __WINESRC__
DWORD ExitStatus;