VIRTUAL_STORAGE_BEHAVIOR_CODE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-ntifs-_virtual_storage_behavior_code)

VIRTUAL_STORAGE_BEHAVIOR_CODE enumeration

Description

Configures file system-specific behaviors used on virtual storage devices.

Constants

VirtualStorageBehaviorUndefined

The behavior of the virtual storage device is undefined.

VirtualStorageBehaviorCacheWriteThrough

Use Write-Through caching on the virtual storage device.

VirtualStorageBehaviorCacheWriteBack

Use Write-Back caching on the virtual storage device.

VirtualStorageBehaviorStopIoProcessing

Stop I/O processing on the virtual storage device.

VirtualStorageBehaviorRestartIoProcessing

Start I/O processing on the virtual storage device.