WRITE_CACHE_ENABLE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddstor.h

typedef enum _WRITE_CACHE_ENABLE {
  WriteCacheEnableUnknown,
  WriteCacheDisabled,
  WriteCacheEnabled
} WRITE_CACHE_ENABLE;

View the official Windows Driver Kit DDI reference
// winioctl.h

typedef enum _WRITE_CACHE_ENABLE {
  WriteCacheEnableUnknown,
  WriteCacheDisabled,
  WriteCacheEnabled
} WRITE_CACHE_ENABLE;

View the official Win32 API reference

NtDoc

No description available.

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

Description

The WRITE_CACHE_ENABLE enumeration indicates whether the write cache is enabled or disabled.

Constants

WriteCacheEnableUnknown

The system cannot report whether the device's write cache is enabled or disabled.

WriteCacheDisabled

The device's write cache is disabled.

WriteCacheEnabled

The device's write cache is enabled.

Remarks

The IOCTL_STORAGE_QUERY_PROPERTY request reports a WRITE_CACHE_ENABLE value in the STORAGE_WRITE_CACHE_PROPERTY structure.

See also

IOCTL_STORAGE_QUERY_PROPERTY

STORAGE_WRITE_CACHE_PROPERTY


Win32 API reference (ne-winioctl-write_cache_enable)

WRITE_CACHE_ENABLE enumeration

Description

Indicates whether the write cache is enabled or disabled.

Constants

WriteCacheEnableUnknown

The system cannot report whether the device's write cache is enabled or disabled.

WriteCacheDisabled

The device's write cache is disabled.

WriteCacheEnabled

The device's write cache is enabled.

Remarks

The IOCTL_STORAGE_QUERY_PROPERTY control code reports a WRITE_CACHE_ENABLE value in the STORAGE_WRITE_CACHE_PROPERTY structure.

See also