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