// ntifs.h
typedef struct _FS_BPIO_INFO {
ULONG ActiveBypassIoCount;
USHORT StorageDriverNameLen;
WCHAR StorageDriverName[32];
} FS_BPIO_INFO, *PFS_BPIO_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The FS_BPIO_INFO structure provides information about the BypassIO state of the volume.
ActiveBypassIoCountThe number of BypassIO-enabled files that are currently open.
StorageDriverNameLenReceives the length of the string stored in StorageDriverName, in characters.
StorageDriverNameReceives a string that specifies the name of the storage driver for this volume.
FS_BPIO_INFO is returned when the requested BypassIO operation is FS_BPIO_OP_GET_INFO, and in the FS_BPIO_OPERATIONS structure when the requested BypassIO operation is FS_BPIO_OP_ENABLE or FS_BPIO_OP_QUERY.
See BypassIO for filter drivers and Supporting BypassIO operations for more information.