libuv: Fix anonymous union syntax
This commit is contained in:
parent
05dbc204cd
commit
b52afa4655
|
@ -4145,7 +4145,7 @@ typedef const UNICODE_STRING *PCUNICODE_STRING;
|
||||||
struct {
|
struct {
|
||||||
UCHAR DataBuffer[1];
|
UCHAR DataBuffer[1];
|
||||||
} GenericReparseBuffer;
|
} GenericReparseBuffer;
|
||||||
} DUMMYUNIONNAME;
|
};
|
||||||
} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
|
} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -4153,7 +4153,7 @@ typedef struct _IO_STATUS_BLOCK {
|
||||||
union {
|
union {
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
PVOID Pointer;
|
PVOID Pointer;
|
||||||
} DUMMYUNIONNAME;
|
};
|
||||||
ULONG_PTR Information;
|
ULONG_PTR Information;
|
||||||
} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;
|
} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue