ホーム › Media.Audio › ConnectorType
ConnectorType
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| Unknown_Connector | 0 | 0x0 |
| Physical_Internal | 1 | 0x1 |
| Physical_External | 2 | 0x2 |
| Software_IO | 3 | 0x3 |
| Software_Fixed | 4 | 0x4 |
| Network | 5 | 0x5 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum ConnectorType : int {
Unknown_Connector = 0,
Physical_Internal = 1,
Physical_External = 2,
Software_IO = 3,
Software_Fixed = 4,
Network = 5
} ConnectorType;public enum ConnectorType : int
{
Unknown_Connector = 0,
Physical_Internal = 1,
Physical_External = 2,
Software_IO = 3,
Software_Fixed = 4,
Network = 5,
}Public Enum ConnectorType As Integer
Unknown_Connector = 0
Physical_Internal = 1
Physical_External = 2
Software_IO = 3
Software_Fixed = 4
Network = 5
End Enumimport enum
class ConnectorType(enum.IntEnum):
Unknown_Connector = 0
Physical_Internal = 1
Physical_External = 2
Software_IO = 3
Software_Fixed = 4
Network = 5// ConnectorType
pub const Unknown_Connector: i32 = 0;
pub const Physical_Internal: i32 = 1;
pub const Physical_External: i32 = 2;
pub const Software_IO: i32 = 3;
pub const Software_Fixed: i32 = 4;
pub const Network: i32 = 5;// ConnectorType
const (
Unknown_Connector int32 = 0
Physical_Internal int32 = 1
Physical_External int32 = 2
Software_IO int32 = 3
Software_Fixed int32 = 4
Network int32 = 5
)const
Unknown_Connector = 0;
Physical_Internal = 1;
Physical_External = 2;
Software_IO = 3;
Software_Fixed = 4;
Network = 5;// ConnectorType
pub const Unknown_Connector: i32 = 0;
pub const Physical_Internal: i32 = 1;
pub const Physical_External: i32 = 2;
pub const Software_IO: i32 = 3;
pub const Software_Fixed: i32 = 4;
pub const Network: i32 = 5;const
Unknown_Connector* = 0
Physical_Internal* = 1
Physical_External* = 2
Software_IO* = 3
Software_Fixed* = 4
Network* = 5enum ConnectorType : int {
Unknown_Connector = 0,
Physical_Internal = 1,
Physical_External = 2,
Software_IO = 3,
Software_Fixed = 4,
Network = 5,
}#define global Unknown_Connector 0x0
#define global Physical_Internal 0x1
#define global Physical_External 0x2
#define global Software_IO 0x3
#define global Software_Fixed 0x4
#define global Network 0x5