#ifndef _NTIOAPI_H
typedef struct _IO_STATUS_BLOCK
{
union
{
NTSTATUS Status;
PVOID Pointer;
};
ULONG_PTR Information;
} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;
View code on GitHub
This structure is documented in Windows Driver Kit.