Author: pschweitzer Date: Wed Jun 17 20:07:44 2015 New Revision: 68177
URL: http://svn.reactos.org/svn/reactos?rev=68177&view=rev Log: [NDK] Fix KNODE definition, to be compatible with w2k3.
Thanks to Thomas for his help.
Modified: trunk/reactos/include/ndk/ketypes.h
Modified: trunk/reactos/include/ndk/ketypes.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/ketypes.h?rev=6... ============================================================================== --- trunk/reactos/include/ndk/ketypes.h [iso-8859-1] (original) +++ trunk/reactos/include/ndk/ketypes.h [iso-8859-1] Wed Jun 17 20:07:44 2015 @@ -774,10 +774,13 @@ SLIST_HEADER DeadStackList; SLIST_HEADER PfnDereferenceSListHead; KAFFINITY ProcessorMask; - ULONG Color; + UCHAR Color; UCHAR Seed; UCHAR NodeNumber; - ULONG Flags; + struct _flags { + UCHAR Removable : 1; + UCHAR Fill : 7; + } Flags; ULONG MmShiftedColor; ULONG FreeCount[2]; struct _SINGLE_LIST_ENTRY *PfnDeferredList;