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

RpcCallType

列挙型
基底型i4

メンバー 4

名前10進16進説明
rctInvalid00x0リモートプロシージャ呼び出しが無効です。
rctNormal10x1リモートプロシージャ呼び出しには特別な特性はありません。
rctTraining20x2リモートプロシージャ呼び出しは「トレーニング」RPC に使用されます。
rctGuaranteed30x3リモートプロシージャ呼び出しは実行が保証されています。

公式ドキュメント

RpcCallType 列挙型は、RPC 呼び出しの種類のセットを指定します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。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