nt: simplify definition for IO_STATUS_BLOCK

This commit is contained in:
Bert Belder 2018-06-11 14:44:08 +02:00
parent f704614aa2
commit d78d67632d
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461

View File

@ -26,10 +26,7 @@ typedef NTSTATUS* PNTSTATUS;
#endif
typedef struct _IO_STATUS_BLOCK {
union {
NTSTATUS Status;
PVOID Pointer;
};
NTSTATUS Status;
ULONG_PTR Information;
} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;