Commit 0b9090ac authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

include: Avoid using attributes on elaborated type specifier.

parent f976fb53
......@@ -778,10 +778,9 @@ typedef struct _SINGLE_LIST_ENTRY {
#ifdef _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 union DECLSPEC_ALIGN(16) _SLIST_HEADER {
struct {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment