Win32 API 日本語リファレンス
ホームSystem.Rpc › RpcCallType

RpcCallType

列挙型
基底型i4

メンバー 4

名前10進16進
rctInvalid00x0
rctNormal10x1
rctTraining20x2
rctGuaranteed30x3

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 3
enum 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