Author: tkreuzer Date: Wed Mar 10 23:23:12 2010 New Revision: 46079
URL: http://svn.reactos.org/svn/reactos?rev=46079&view=rev Log: [NTIFS] Add back some members of OBJECT_INFORMATION_CLASS, with a comment that they are missing in WDK
Modified: branches/header-work/include/ddk/ntifs.h
Modified: branches/header-work/include/ddk/ntifs.h URL: http://svn.reactos.org/svn/reactos/branches/header-work/include/ddk/ntifs.h?... ============================================================================== --- branches/header-work/include/ddk/ntifs.h [iso-8859-1] (original) +++ branches/header-work/include/ddk/ntifs.h [iso-8859-1] Wed Mar 10 23:23:12 2010 @@ -743,7 +743,12 @@
typedef enum _OBJECT_INFORMATION_CLASS { ObjectBasicInformation = 0, - ObjectTypeInformation = 2 + ObjectNameInformation = 1, /* FIXME, not in WDK */ + ObjectTypeInformation = 2, + ObjectTypesInformation = 3, /* FIXME, not in WDK */ + ObjectHandleFlagInformation = 4, /* FIXME, not in WDK */ + ObjectSessionInformation = 5, /* FIXME, not in WDK */ + MaxObjectInfoClass /* FIXME, not in WDK */ } OBJECT_INFORMATION_CLASS;
#if (NTDDI_VERSION >= NTDDI_NT4)