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