mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 12:40:33 +00:00
[PSDK]
- ntstatus.h: add STATUS_INVALID_CRUNTIME_PARAMETER - winnt.h: fix 64 bit definition of SLIST_ENTRY svn path=/trunk/; revision=47768
This commit is contained in:
parent
6d224b0735
commit
17d39f4f25
2 changed files with 3 additions and 4 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue