ホーム › Media.DirectShow › Pilot
Pilot
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| BDA_PILOT_NOT_SET | -1 | 0xFFFFFFFF |
| BDA_PILOT_NOT_DEFINED | 0 | 0x0 |
| BDA_PILOT_OFF | 1 | 0x1 |
| BDA_PILOT_ON | 2 | 0x2 |
| BDA_PILOT_MAX | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum Pilot : int {
BDA_PILOT_NOT_SET = -1,
BDA_PILOT_NOT_DEFINED = 0,
BDA_PILOT_OFF = 1,
BDA_PILOT_ON = 2,
BDA_PILOT_MAX = 3
} Pilot;public enum Pilot : int
{
BDA_PILOT_NOT_SET = -1,
BDA_PILOT_NOT_DEFINED = 0,
BDA_PILOT_OFF = 1,
BDA_PILOT_ON = 2,
BDA_PILOT_MAX = 3,
}Public Enum Pilot As Integer
BDA_PILOT_NOT_SET = -1
BDA_PILOT_NOT_DEFINED = 0
BDA_PILOT_OFF = 1
BDA_PILOT_ON = 2
BDA_PILOT_MAX = 3
End Enumimport enum
class Pilot(enum.IntEnum):
BDA_PILOT_NOT_SET = -1
BDA_PILOT_NOT_DEFINED = 0
BDA_PILOT_OFF = 1
BDA_PILOT_ON = 2
BDA_PILOT_MAX = 3// Pilot
pub const BDA_PILOT_NOT_SET: i32 = -1;
pub const BDA_PILOT_NOT_DEFINED: i32 = 0;
pub const BDA_PILOT_OFF: i32 = 1;
pub const BDA_PILOT_ON: i32 = 2;
pub const BDA_PILOT_MAX: i32 = 3;// Pilot
const (
BDA_PILOT_NOT_SET int32 = -1
BDA_PILOT_NOT_DEFINED int32 = 0
BDA_PILOT_OFF int32 = 1
BDA_PILOT_ON int32 = 2
BDA_PILOT_MAX int32 = 3
)const
BDA_PILOT_NOT_SET = -1;
BDA_PILOT_NOT_DEFINED = 0;
BDA_PILOT_OFF = 1;
BDA_PILOT_ON = 2;
BDA_PILOT_MAX = 3;// Pilot
pub const BDA_PILOT_NOT_SET: i32 = -1;
pub const BDA_PILOT_NOT_DEFINED: i32 = 0;
pub const BDA_PILOT_OFF: i32 = 1;
pub const BDA_PILOT_ON: i32 = 2;
pub const BDA_PILOT_MAX: i32 = 3;const
BDA_PILOT_NOT_SET* = -1
BDA_PILOT_NOT_DEFINED* = 0
BDA_PILOT_OFF* = 1
BDA_PILOT_ON* = 2
BDA_PILOT_MAX* = 3enum Pilot : int {
BDA_PILOT_NOT_SET = -1,
BDA_PILOT_NOT_DEFINED = 0,
BDA_PILOT_OFF = 1,
BDA_PILOT_ON = 2,
BDA_PILOT_MAX = 3,
}#define global BDA_PILOT_NOT_SET 0xFFFFFFFF
#define global BDA_PILOT_NOT_DEFINED 0x0
#define global BDA_PILOT_OFF 0x1
#define global BDA_PILOT_ON 0x2
#define global BDA_PILOT_MAX 0x3