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