ホーム › System.Ioctl › BIN_TYPES
BIN_TYPES
列挙型メンバー 2
| 名前 | 10進 | 16進 |
|---|---|---|
| RequestSize | 0 | 0x0 |
| RequestLocation | 1 | 0x1 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum BIN_TYPES : int {
RequestSize = 0,
RequestLocation = 1
} BIN_TYPES;public enum BIN_TYPES : int
{
RequestSize = 0,
RequestLocation = 1,
}Public Enum BIN_TYPES As Integer
RequestSize = 0
RequestLocation = 1
End Enumimport enum
class BIN_TYPES(enum.IntEnum):
RequestSize = 0
RequestLocation = 1// BIN_TYPES
pub const RequestSize: i32 = 0;
pub const RequestLocation: i32 = 1;// BIN_TYPES
const (
RequestSize int32 = 0
RequestLocation int32 = 1
)const
RequestSize = 0;
RequestLocation = 1;// BIN_TYPES
pub const RequestSize: i32 = 0;
pub const RequestLocation: i32 = 1;const
RequestSize* = 0
RequestLocation* = 1enum BIN_TYPES : int {
RequestSize = 0,
RequestLocation = 1,
}#define global RequestSize 0x0
#define global RequestLocation 0x1