ホーム › System.Ioctl › STORAGE_ZONE_TYPES
STORAGE_ZONE_TYPES
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| ZoneTypeUnknown | 0 | 0x0 |
| ZoneTypeConventional | 1 | 0x1 |
| ZoneTypeSequentialWriteRequired | 2 | 0x2 |
| ZoneTypeSequentialWritePreferred | 3 | 0x3 |
| ZoneTypeMax | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 4enum 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