WRITE_THROUGH - NtDoc

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

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-ntddstor-write_through)

Description

The WRITE_THROUGH enumeration specifies whether a storage device supports write-through caching.

Constants

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.

Remarks

The IOCTL_STORAGE_QUERY_PROPERTY request reports this value in the STORAGE_WRITE_CACHE_PROPERTY structure.

See also

IOCTL_STORAGE_QUERY_PROPERTY

STORAGE_WRITE_CACHE_PROPERTY


Win32 API reference (ne-winioctl-write_through)

WRITE_THROUGH enumeration

Description

Specifies whether a storage device supports write-through caching.

Constants

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.

Remarks

The IOCTL_STORAGE_QUERY_PROPERTY control code reports this value in the STORAGE_WRITE_CACHE_PROPERTY structure.

See also