Fix build

svn path=/trunk/; revision=54938
This commit is contained in:
Timo Kreuzer 2012-01-13 17:49:40 +00:00
parent 717a730361
commit 6d4cdfa8a6
2 changed files with 8 additions and 2 deletions

View file

@ -817,6 +817,12 @@ typedef struct _SECURITY_CLIENT_CONTEXT {
typedef enum _OBJECT_INFORMATION_CLASS {
ObjectBasicInformation = 0,
ObjectTypeInformation = 2,
/* Not for public use */
ObjectNameInformation = 1,
ObjectTypesInformation = 3,
ObjectHandleFlagInformation = 4,
ObjectSessionInformation = 5,
MaxObjectInfoClass
} OBJECT_INFORMATION_CLASS;

View file

@ -139,14 +139,14 @@ typedef enum _OBJECT_INFORMATION_CLASS {
ObjectBasicInformation = 0,
ObjectTypeInformation = 2,
$endif (_NTIFS_)
$if (_PRIVATE_)
$if (_NTIFS_) // we should remove these, but the kernel needs them :-/
/* Not for public use */
ObjectNameInformation = 1,
ObjectTypesInformation = 3,
ObjectHandleFlagInformation = 4,
ObjectSessionInformation = 5,
MaxObjectInfoClass
$endif (_PRIVATE_)
$endif (_NTIFS_)
$if (_NTIFS_)
} OBJECT_INFORMATION_CLASS;