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

WRdsGraphicsChannelType

列挙型
基底型i4

メンバー 2

名前10進16進説明
WRdsGraphicsChannelType_GuaranteedDelivery00x0チャネルの配信が保証されなければなりません。
WRdsGraphicsChannelType_BestEffortDelivery10x1チャネルの配信は損失を伴う可能性があります。

公式ドキュメント

IWRdsGraphicsChannelManager::CreateChannel メソッドで作成するグラフィックス仮想チャネルの種類を指定します。

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

各言語での定義

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

typedef enum WRdsGraphicsChannelType : int {
    WRdsGraphicsChannelType_GuaranteedDelivery = 0,
    WRdsGraphicsChannelType_BestEffortDelivery = 1
} WRdsGraphicsChannelType;
public enum WRdsGraphicsChannelType : int
{
    WRdsGraphicsChannelType_GuaranteedDelivery = 0,
    WRdsGraphicsChannelType_BestEffortDelivery = 1,
}
Public Enum WRdsGraphicsChannelType As Integer
    WRdsGraphicsChannelType_GuaranteedDelivery = 0
    WRdsGraphicsChannelType_BestEffortDelivery = 1
End Enum
import enum

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