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

RPC_NOTIFICATION_TYPES

列挙型
基底型i4

メンバー 6

名前10進16進説明
RpcNotificationTypeNone00x0クライアントは、非同期リモートプロシージャコールの完了通知を必要としません。
RpcNotificationTypeEvent10x1イベントオブジェクトをシグナル状態にすることでクライアントプログラムに通知します。 Event Objects を参照してください。
RpcNotificationTypeApc20x2非同期プロシージャコールを使用して、リモートプロシージャコールが完了したことをクライアントに通知します。
RpcNotificationTypeIoc30x3I/O 完了ポートを通じて、非同期 RPC 通知をクライアントに送信します。
RpcNotificationTypeHwnd40x4指定されたウィンドウハンドルに通知メッセージをポストします。
RpcNotificationTypeCallback50x5クライアントプログラムが提供するコールバック関数を呼び出します。

公式ドキュメント

RPC_NOTIFICATION_TYPES 列挙型は、クライアントプログラムが使用する非同期通知の方法を指定する値を含みます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
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 Enum
import 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* = 5
enum 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