[PSDK]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sat, 12 Jun 2010 15:09:34 +0000 (15:09 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Sat, 12 Jun 2010 15:09:34 +0000 (15:09 +0000)
- ntstatus.h: add STATUS_INVALID_CRUNTIME_PARAMETER
- winnt.h: fix 64 bit definition of SLIST_ENTRY

svn path=/trunk/; revision=47768

reactos/include/psdk/ntstatus.h
reactos/include/psdk/winnt.h

index 9237221..1d4bf2c 100644 (file)
@@ -938,6 +938,7 @@ extern "C" {
 #define STATUS_AUTHENTICATION_FIREWALL_FAILED   ((NTSTATUS)0xC0000413)
 #define STATUS_VDM_DISALLOWED                   ((NTSTATUS)0xC0000414)
 #define STATUS_HUNG_DISPLAY_DRIVER_THREAD       ((NTSTATUS)0xC0000415)
+#define STATUS_INVALID_CRUNTIME_PARAMETER       ((NTSTATUS)0xC0000417)
 #define STATUS_ASSERTION_FAILURE                ((NTSTATUS)0xC0000420L)
 #define STATUS_CALLBACK_POP_STACK               ((NTSTATUS)0xC0000423)
 #define STATUS_WOW_ASSERTION                    ((NTSTATUS)0xC0009898)
index 469b5f8..a9f9d17 100644 (file)
@@ -3335,11 +3335,9 @@ typedef struct _SINGLE_LIST_ENTRY {
 
 #if defined(_WIN64)
 
-typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY *PSLIST_ENTRY;
-
 typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY {
-  PSLIST_ENTRY Next;
-} SLIST_ENTRY;
+  struct _SLIST_ENTRY *Next;
+} SLIST_ENTRY, *PSLIST_ENTRY;
 
 typedef struct _SLIST_ENTRY32 {
   DWORD Next;