include: Avoid using attributes on elaborated type specifier.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f976fb53ad
commit
0b9090acca
|
@ -778,10 +778,9 @@ typedef struct _SINGLE_LIST_ENTRY {
|
||||||
|
|
||||||
#ifdef _WIN64
|
#ifdef _WIN64
|
||||||
|
|
||||||
typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY *PSLIST_ENTRY;
|
|
||||||
typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY {
|
typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY {
|
||||||
PSLIST_ENTRY Next;
|
struct _SLIST_ENTRY *Next;
|
||||||
} SLIST_ENTRY;
|
} SLIST_ENTRY, *PSLIST_ENTRY;
|
||||||
|
|
||||||
typedef union DECLSPEC_ALIGN(16) _SLIST_HEADER {
|
typedef union DECLSPEC_ALIGN(16) _SLIST_HEADER {
|
||||||
struct {
|
struct {
|
||||||
|
|
Loading…
Reference in New Issue