Add OBJECT_BASIC_INFORMATION to winternl.h

Vitaliy Margolen wine-patch at kievinfo.com
Tue Oct 25 14:26:03 CDT 2005


Vitaliy Margolen

changelog:
  Add OBJECT_BASIC_INFORMATION to winternl.h
-------------- next part --------------
Index: include/winternl.h
===================================================================
RCS file: /home/wine/wine/include/winternl.h,v
retrieving revision 1.164
diff -u -p -r1.164 winternl.h
--- include/winternl.h	6 Sep 2005 10:25:11 -0000	1.164
+++ include/winternl.h	5 Oct 2005 15:41:52 -0000
@@ -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;


More information about the wine-patches mailing list