// ntifs.h
typedef enum _FS_BPIO_INFLAGS {
FSBPIO_INFL_None,
FSBPIO_INFL_SKIP_STORAGE_STACK_QUERY
} FS_BPIO_INFLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
FS_BPIO_INFLAGS defines the BypassIO input flags for the FSCTL_MANAGE_BYPASS_IO control code.
FSBPIO_INFL_NoneNo input flag(s) are set.
FSBPIO_INFL_SKIP_STORAGE_STACK_QUERYThis flag suppresses the file system from sending IOCTL_STORAGE_MANAGE_BYPASS_IO to the storage stack, and returns results based only on the filter stack. It applies to FS_BPIO_OP_QUERY operations only, and has no effect on FS_BPIO_OP_ENABLE operations.
FS_BPIO_INFLAGS is passed as an input parameter to FSCTL_MANAGE_BYPASS_IO.
See BypassIO for filter drivers and Supporting BypassIO operations for more information.