From d78d67632da4b39886f3b6b3014021d3aaa2d354 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 11 Jun 2018 14:44:08 +0200 Subject: [PATCH] nt: simplify definition for IO_STATUS_BLOCK --- src/nt.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/nt.h b/src/nt.h index ffdbcb8..62cd98b 100644 --- a/src/nt.h +++ b/src/nt.h @@ -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;