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

BIN_TYPES

列挙型
基底型i4

メンバー 2

名前10進16進
RequestSize00x0
RequestLocation10x1

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 1
enum BIN_TYPES : int {
    RequestSize = 0,
    RequestLocation = 1,
}
#define global RequestSize     0x0
#define global RequestLocation 0x1