ホーム › System.Rpc › RPC_NOTIFICATION_TYPES
RPC_NOTIFICATION_TYPES
列挙型メンバー 6
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| RpcNotificationTypeNone | 0 | 0x0 | クライアントは、非同期リモートプロシージャコールの完了通知を必要としません。 |
| RpcNotificationTypeEvent | 1 | 0x1 | イベントオブジェクトをシグナル状態にすることでクライアントプログラムに通知します。 Event Objects を参照してください。 |
| RpcNotificationTypeApc | 2 | 0x2 | 非同期プロシージャコールを使用して、リモートプロシージャコールが完了したことをクライアントに通知します。 |
| RpcNotificationTypeIoc | 3 | 0x3 | I/O 完了ポートを通じて、非同期 RPC 通知をクライアントに送信します。 |
| RpcNotificationTypeHwnd | 4 | 0x4 | 指定されたウィンドウハンドルに通知メッセージをポストします。 |
| RpcNotificationTypeCallback | 5 | 0x5 | クライアントプログラムが提供するコールバック関数を呼び出します。 |
公式ドキュメント
RPC_NOTIFICATION_TYPES 列挙型は、クライアントプログラムが使用する非同期通知の方法を指定する値を含みます。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum RPC_NOTIFICATION_TYPES : int {
RpcNotificationTypeNone = 0,
RpcNotificationTypeEvent = 1,
RpcNotificationTypeApc = 2,
RpcNotificationTypeIoc = 3,
RpcNotificationTypeHwnd = 4,
RpcNotificationTypeCallback = 5
} RPC_NOTIFICATION_TYPES;public enum RPC_NOTIFICATION_TYPES : int
{
RpcNotificationTypeNone = 0,
RpcNotificationTypeEvent = 1,
RpcNotificationTypeApc = 2,
RpcNotificationTypeIoc = 3,
RpcNotificationTypeHwnd = 4,
RpcNotificationTypeCallback = 5,
}Public Enum RPC_NOTIFICATION_TYPES As Integer
RpcNotificationTypeNone = 0
RpcNotificationTypeEvent = 1
RpcNotificationTypeApc = 2
RpcNotificationTypeIoc = 3
RpcNotificationTypeHwnd = 4
RpcNotificationTypeCallback = 5
End Enumimport enum
class RPC_NOTIFICATION_TYPES(enum.IntEnum):
RpcNotificationTypeNone = 0
RpcNotificationTypeEvent = 1
RpcNotificationTypeApc = 2
RpcNotificationTypeIoc = 3
RpcNotificationTypeHwnd = 4
RpcNotificationTypeCallback = 5// RPC_NOTIFICATION_TYPES
pub const RpcNotificationTypeNone: i32 = 0;
pub const RpcNotificationTypeEvent: i32 = 1;
pub const RpcNotificationTypeApc: i32 = 2;
pub const RpcNotificationTypeIoc: i32 = 3;
pub const RpcNotificationTypeHwnd: i32 = 4;
pub const RpcNotificationTypeCallback: i32 = 5;// RPC_NOTIFICATION_TYPES
const (
RpcNotificationTypeNone int32 = 0
RpcNotificationTypeEvent int32 = 1
RpcNotificationTypeApc int32 = 2
RpcNotificationTypeIoc int32 = 3
RpcNotificationTypeHwnd int32 = 4
RpcNotificationTypeCallback int32 = 5
)const
RpcNotificationTypeNone = 0;
RpcNotificationTypeEvent = 1;
RpcNotificationTypeApc = 2;
RpcNotificationTypeIoc = 3;
RpcNotificationTypeHwnd = 4;
RpcNotificationTypeCallback = 5;// RPC_NOTIFICATION_TYPES
pub const RpcNotificationTypeNone: i32 = 0;
pub const RpcNotificationTypeEvent: i32 = 1;
pub const RpcNotificationTypeApc: i32 = 2;
pub const RpcNotificationTypeIoc: i32 = 3;
pub const RpcNotificationTypeHwnd: i32 = 4;
pub const RpcNotificationTypeCallback: i32 = 5;const
RpcNotificationTypeNone* = 0
RpcNotificationTypeEvent* = 1
RpcNotificationTypeApc* = 2
RpcNotificationTypeIoc* = 3
RpcNotificationTypeHwnd* = 4
RpcNotificationTypeCallback* = 5enum RPC_NOTIFICATION_TYPES : int {
RpcNotificationTypeNone = 0,
RpcNotificationTypeEvent = 1,
RpcNotificationTypeApc = 2,
RpcNotificationTypeIoc = 3,
RpcNotificationTypeHwnd = 4,
RpcNotificationTypeCallback = 5,
}#define global RpcNotificationTypeNone 0x0
#define global RpcNotificationTypeEvent 0x1
#define global RpcNotificationTypeApc 0x2
#define global RpcNotificationTypeIoc 0x3
#define global RpcNotificationTypeHwnd 0x4
#define global RpcNotificationTypeCallback 0x5