commit | 32b4325d6bc0e48a1fb9b3122cce0c14cbed0c30 | [log] [tgz] |
---|---|---|
author | Patrik Stridvall <ps@leissner.se> | Tue Sep 14 07:52:16 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Sep 14 07:52:16 1999 +0000 |
tree | 94ecf2d8f19343c0b2753bbbde9756b6c8369b61 | |
parent | 9af3ebaa7bca4e92f40d8421764ce9d50af78a01 [diff] [blame] |
Add support for anonymous struct/unions on compilers that implement it.
diff --git a/include/ntddk.h b/include/ntddk.h index 919287e..d89eb46 100644 --- a/include/ntddk.h +++ b/include/ntddk.h
@@ -20,10 +20,11 @@ #undef Status /* conflict with X11-includes*/ typedef struct _IO_STATUS_BLOCK -{ union - { NTSTATUS Status; +{ + union { + NTSTATUS Status; PVOID Pointer; - } u; + } DUMMYUNIONNAME; ULONG_PTR Information; } IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;