ホーム › Devices.AllJoyn › alljoyn_messagetype
alljoyn_messagetype
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| ALLJOYN_MESSAGE_INVALID | 0 | 0x0 |
| ALLJOYN_MESSAGE_METHOD_CALL | 1 | 0x1 |
| ALLJOYN_MESSAGE_METHOD_RET | 2 | 0x2 |
| ALLJOYN_MESSAGE_ERROR | 3 | 0x3 |
| ALLJOYN_MESSAGE_SIGNAL | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum alljoyn_messagetype : int {
ALLJOYN_MESSAGE_INVALID = 0,
ALLJOYN_MESSAGE_METHOD_CALL = 1,
ALLJOYN_MESSAGE_METHOD_RET = 2,
ALLJOYN_MESSAGE_ERROR = 3,
ALLJOYN_MESSAGE_SIGNAL = 4
} alljoyn_messagetype;public enum alljoyn_messagetype : int
{
ALLJOYN_MESSAGE_INVALID = 0,
ALLJOYN_MESSAGE_METHOD_CALL = 1,
ALLJOYN_MESSAGE_METHOD_RET = 2,
ALLJOYN_MESSAGE_ERROR = 3,
ALLJOYN_MESSAGE_SIGNAL = 4,
}Public Enum alljoyn_messagetype As Integer
ALLJOYN_MESSAGE_INVALID = 0
ALLJOYN_MESSAGE_METHOD_CALL = 1
ALLJOYN_MESSAGE_METHOD_RET = 2
ALLJOYN_MESSAGE_ERROR = 3
ALLJOYN_MESSAGE_SIGNAL = 4
End Enumimport enum
class alljoyn_messagetype(enum.IntEnum):
ALLJOYN_MESSAGE_INVALID = 0
ALLJOYN_MESSAGE_METHOD_CALL = 1
ALLJOYN_MESSAGE_METHOD_RET = 2
ALLJOYN_MESSAGE_ERROR = 3
ALLJOYN_MESSAGE_SIGNAL = 4// alljoyn_messagetype
pub const ALLJOYN_MESSAGE_INVALID: i32 = 0;
pub const ALLJOYN_MESSAGE_METHOD_CALL: i32 = 1;
pub const ALLJOYN_MESSAGE_METHOD_RET: i32 = 2;
pub const ALLJOYN_MESSAGE_ERROR: i32 = 3;
pub const ALLJOYN_MESSAGE_SIGNAL: i32 = 4;// alljoyn_messagetype
const (
ALLJOYN_MESSAGE_INVALID int32 = 0
ALLJOYN_MESSAGE_METHOD_CALL int32 = 1
ALLJOYN_MESSAGE_METHOD_RET int32 = 2
ALLJOYN_MESSAGE_ERROR int32 = 3
ALLJOYN_MESSAGE_SIGNAL int32 = 4
)const
ALLJOYN_MESSAGE_INVALID = 0;
ALLJOYN_MESSAGE_METHOD_CALL = 1;
ALLJOYN_MESSAGE_METHOD_RET = 2;
ALLJOYN_MESSAGE_ERROR = 3;
ALLJOYN_MESSAGE_SIGNAL = 4;// alljoyn_messagetype
pub const ALLJOYN_MESSAGE_INVALID: i32 = 0;
pub const ALLJOYN_MESSAGE_METHOD_CALL: i32 = 1;
pub const ALLJOYN_MESSAGE_METHOD_RET: i32 = 2;
pub const ALLJOYN_MESSAGE_ERROR: i32 = 3;
pub const ALLJOYN_MESSAGE_SIGNAL: i32 = 4;const
ALLJOYN_MESSAGE_INVALID* = 0
ALLJOYN_MESSAGE_METHOD_CALL* = 1
ALLJOYN_MESSAGE_METHOD_RET* = 2
ALLJOYN_MESSAGE_ERROR* = 3
ALLJOYN_MESSAGE_SIGNAL* = 4enum alljoyn_messagetype : int {
ALLJOYN_MESSAGE_INVALID = 0,
ALLJOYN_MESSAGE_METHOD_CALL = 1,
ALLJOYN_MESSAGE_METHOD_RET = 2,
ALLJOYN_MESSAGE_ERROR = 3,
ALLJOYN_MESSAGE_SIGNAL = 4,
}#define global ALLJOYN_MESSAGE_INVALID 0x0
#define global ALLJOYN_MESSAGE_METHOD_CALL 0x1
#define global ALLJOYN_MESSAGE_METHOD_RET 0x2
#define global ALLJOYN_MESSAGE_ERROR 0x3
#define global ALLJOYN_MESSAGE_SIGNAL 0x4