// ntddstor.h
typedef enum _WRITE_THROUGH {
WriteThroughUnknown,
WriteThroughNotSupported,
WriteThroughSupported
} WRITE_THROUGH;
View the official Windows Driver Kit DDI reference
// winioctl.h
typedef enum _WRITE_THROUGH {
WriteThroughUnknown,
WriteThroughNotSupported,
WriteThroughSupported
} WRITE_THROUGH;
View the official Win32 API reference
No description available.
The WRITE_THROUGH enumeration specifies whether a storage device supports write-through caching.
WriteThroughUnknown
Indicates that no information is available concerning the writethrough capabilities of the device.
WriteThroughNotSupported
Indicates that the device does not support writethrough operations.
WriteThroughSupported
Indicates that the device supports writethrough operations.
The IOCTL_STORAGE_QUERY_PROPERTY request reports this value in the STORAGE_WRITE_CACHE_PROPERTY structure.
Specifies whether a storage device supports write-through caching.
WriteThroughUnknown
Indicates that no information is available about the write-through capabilities of the device.
WriteThroughNotSupported
Indicates that the device does not support write-through caching.
WriteThroughSupported
Indicates that the device supports write-through caching.
The IOCTL_STORAGE_QUERY_PROPERTY control code reports this value in the STORAGE_WRITE_CACHE_PROPERTY structure.