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

WDSTRANSPORT_SERVICE_NOTIFICATION

列挙型
基底型i4

メンバー 2

名前10進16進説明
WdsTptServiceNotifyUnknown00x0通知の種類が不明であることを示す既定値です。
WdsTptServiceNotifyReadSettings10x1WDS トランスポート サービスが最近の更新を反映するために設定を再読み込みする必要があることを指定します。

公式ドキュメント

構成の変更後に設定を再読み込みさせるなど、WDS トランスポート サービスへ通知する際に必要な操作を指定します。

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

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum WDSTRANSPORT_SERVICE_NOTIFICATION : int {
    WdsTptServiceNotifyUnknown = 0,
    WdsTptServiceNotifyReadSettings = 1
} WDSTRANSPORT_SERVICE_NOTIFICATION;
public enum WDSTRANSPORT_SERVICE_NOTIFICATION : int
{
    WdsTptServiceNotifyUnknown = 0,
    WdsTptServiceNotifyReadSettings = 1,
}
Public Enum WDSTRANSPORT_SERVICE_NOTIFICATION As Integer
    WdsTptServiceNotifyUnknown = 0
    WdsTptServiceNotifyReadSettings = 1
End Enum
import enum

class WDSTRANSPORT_SERVICE_NOTIFICATION(enum.IntEnum):
    WdsTptServiceNotifyUnknown = 0
    WdsTptServiceNotifyReadSettings = 1
// WDSTRANSPORT_SERVICE_NOTIFICATION
pub const WdsTptServiceNotifyUnknown: i32 = 0;
pub const WdsTptServiceNotifyReadSettings: i32 = 1;
// WDSTRANSPORT_SERVICE_NOTIFICATION
const (
	WdsTptServiceNotifyUnknown int32 = 0
	WdsTptServiceNotifyReadSettings int32 = 1
)
const
  WdsTptServiceNotifyUnknown = 0;
  WdsTptServiceNotifyReadSettings = 1;
// WDSTRANSPORT_SERVICE_NOTIFICATION
pub const WdsTptServiceNotifyUnknown: i32 = 0;
pub const WdsTptServiceNotifyReadSettings: i32 = 1;
const
  WdsTptServiceNotifyUnknown* = 0
  WdsTptServiceNotifyReadSettings* = 1
enum WDSTRANSPORT_SERVICE_NOTIFICATION : int {
    WdsTptServiceNotifyUnknown = 0,
    WdsTptServiceNotifyReadSettings = 1,
}
#define global WdsTptServiceNotifyUnknown      0x0
#define global WdsTptServiceNotifyReadSettings 0x1