[ros-diffs] [tkreuzer] 47768: [PSDK] - ntstatus.h: add STATUS_INVALID_CRUNTIME_PARAMETER - winnt.h: fix 64 bit definition of SLIST_ENTRY

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Sat Jun 12 15:09:35 UTC 2010


Author: tkreuzer
Date: Sat Jun 12 15:09:34 2010
New Revision: 47768

URL: http://svn.reactos.org/svn/reactos?rev=47768&view=rev
Log:
[PSDK]
- ntstatus.h: add STATUS_INVALID_CRUNTIME_PARAMETER
- winnt.h: fix 64 bit definition of SLIST_ENTRY

Modified:
    trunk/reactos/include/psdk/ntstatus.h
    trunk/reactos/include/psdk/winnt.h

Modified: trunk/reactos/include/psdk/ntstatus.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/ntstatus.h?rev=47768&r1=47767&r2=47768&view=diff
==============================================================================
--- trunk/reactos/include/psdk/ntstatus.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/ntstatus.h [iso-8859-1] Sat Jun 12 15:09:34 2010
@@ -938,6 +938,7 @@
 #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)

Modified: trunk/reactos/include/psdk/winnt.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/winnt.h?rev=47768&r1=47767&r2=47768&view=diff
==============================================================================
--- trunk/reactos/include/psdk/winnt.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/winnt.h [iso-8859-1] Sat Jun 12 15:09:34 2010
@@ -3335,11 +3335,9 @@
 
 #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;




More information about the Ros-diffs mailing list