Win32 API 日本語リファレンス
ホームSystem.Ioctl › STORAGE_ZONE_TYPES

STORAGE_ZONE_TYPES

列挙型
基底型i4

メンバー 5

名前10進16進
ZoneTypeUnknown00x0
ZoneTypeConventional10x1
ZoneTypeSequentialWriteRequired20x2
ZoneTypeSequentialWritePreferred30x3
ZoneTypeMax40x4

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum STORAGE_ZONE_TYPES : int {
    ZoneTypeUnknown = 0,
    ZoneTypeConventional = 1,
    ZoneTypeSequentialWriteRequired = 2,
    ZoneTypeSequentialWritePreferred = 3,
    ZoneTypeMax = 4
} STORAGE_ZONE_TYPES;
public enum STORAGE_ZONE_TYPES : int
{
    ZoneTypeUnknown = 0,
    ZoneTypeConventional = 1,
    ZoneTypeSequentialWriteRequired = 2,
    ZoneTypeSequentialWritePreferred = 3,
    ZoneTypeMax = 4,
}
Public Enum STORAGE_ZONE_TYPES As Integer
    ZoneTypeUnknown = 0
    ZoneTypeConventional = 1
    ZoneTypeSequentialWriteRequired = 2
    ZoneTypeSequentialWritePreferred = 3
    ZoneTypeMax = 4
End Enum
import enum

class STORAGE_ZONE_TYPES(enum.IntEnum):
    ZoneTypeUnknown = 0
    ZoneTypeConventional = 1
    ZoneTypeSequentialWriteRequired = 2
    ZoneTypeSequentialWritePreferred = 3
    ZoneTypeMax = 4
// STORAGE_ZONE_TYPES
pub const ZoneTypeUnknown: i32 = 0;
pub const ZoneTypeConventional: i32 = 1;
pub const ZoneTypeSequentialWriteRequired: i32 = 2;
pub const ZoneTypeSequentialWritePreferred: i32 = 3;
pub const ZoneTypeMax: i32 = 4;
// STORAGE_ZONE_TYPES
const (
	ZoneTypeUnknown int32 = 0
	ZoneTypeConventional int32 = 1
	ZoneTypeSequentialWriteRequired int32 = 2
	ZoneTypeSequentialWritePreferred int32 = 3
	ZoneTypeMax int32 = 4
)
const
  ZoneTypeUnknown = 0;
  ZoneTypeConventional = 1;
  ZoneTypeSequentialWriteRequired = 2;
  ZoneTypeSequentialWritePreferred = 3;
  ZoneTypeMax = 4;
// STORAGE_ZONE_TYPES
pub const ZoneTypeUnknown: i32 = 0;
pub const ZoneTypeConventional: i32 = 1;
pub const ZoneTypeSequentialWriteRequired: i32 = 2;
pub const ZoneTypeSequentialWritePreferred: i32 = 3;
pub const ZoneTypeMax: i32 = 4;
const
  ZoneTypeUnknown* = 0
  ZoneTypeConventional* = 1
  ZoneTypeSequentialWriteRequired* = 2
  ZoneTypeSequentialWritePreferred* = 3
  ZoneTypeMax* = 4
enum STORAGE_ZONE_TYPES : int {
    ZoneTypeUnknown = 0,
    ZoneTypeConventional = 1,
    ZoneTypeSequentialWriteRequired = 2,
    ZoneTypeSequentialWritePreferred = 3,
    ZoneTypeMax = 4,
}
#define global ZoneTypeUnknown                  0x0
#define global ZoneTypeConventional             0x1
#define global ZoneTypeSequentialWriteRequired  0x2
#define global ZoneTypeSequentialWritePreferred 0x3
#define global ZoneTypeMax                      0x4