// ntifs.h
typedef enum _VIRTUAL_STORAGE_BEHAVIOR_CODE {
VirtualStorageBehaviorUndefined,
VirtualStorageBehaviorCacheWriteThrough,
VirtualStorageBehaviorCacheWriteBack,
VirtualStorageBehaviorStopIoProcessing,
VirtualStorageBehaviorRestartIoProcessing
} VIRTUAL_STORAGE_BEHAVIOR_CODE, *PVIRTUAL_STORAGE_BEHAVIOR_CODE;
View the official Windows Driver Kit DDI referenceNo description available.
Configures file system-specific behaviors used on virtual storage devices.
VirtualStorageBehaviorUndefinedThe behavior of the virtual storage device is undefined.
VirtualStorageBehaviorCacheWriteThroughUse Write-Through caching on the virtual storage device.
VirtualStorageBehaviorCacheWriteBackUse Write-Back caching on the virtual storage device.
VirtualStorageBehaviorStopIoProcessingStop I/O processing on the virtual storage device.
VirtualStorageBehaviorRestartIoProcessingStart I/O processing on the virtual storage device.