// ntifs.h
typedef struct _FS_BPIO_INPUT {
FS_BPIO_OPERATIONS Operation;
FS_BPIO_INFLAGS InFlags;
ULONGLONG Reserved1;
ULONGLONG Reserved2;
} FS_BPIO_INPUT, *PFS_BPIO_INPUT;
View the official Windows Driver Kit DDI referenceNo description available.
The FS_BPIO_INPUT structure specifies the requested BypassIO operation and flags for the FSCTL_MANAGE_BYPASS_IO control code.
OperationA FS_BPIO_OPERATIONS enum value that identifies the requested BypassIO operation.
InFlagsA FS_BPIO_INFLAGS enum value that specifies the input flags for the operation.
Reserved1Reserved for system use. Must be set to zero.
Reserved2Reserved for system use. Must be set to zero.
See BypassIO for filter drivers and Supporting BypassIO operations for more information.