Win32 API 日本語リファレンス
ホームMedia.DirectShow.Tv › MSVidCCService

MSVidCCService

列挙型
基底型i4

メンバー 6

名前10進16進説明
None00x0現在のサービスはありません。
Caption110x1CC1 (キャプション チャネル)
Caption220x2CC2 (キャプション チャネル)
Text130x3T1 (テキスト チャネル)
Text240x4T2 (テキスト チャネル)
XDS50x5拡張データ サービス (XDS または EDS)

公式ドキュメント

[このページに関連付けられている機能 Microsoft TV Technologies はレガシー機能です。新しいコードではこの機能を使用しないことを強くお勧めします。]

このトピックは Windows XP Service Pack 1 以降に適用されます。

MSVidCCService 列挙型は、クローズド キャプション サービスを示します。

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

各言語での定義

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

typedef enum MSVidCCService : int {
    None = 0,
    Caption1 = 1,
    Caption2 = 2,
    Text1 = 3,
    Text2 = 4,
    XDS = 5
} MSVidCCService;
public enum MSVidCCService : int
{
    None = 0,
    Caption1 = 1,
    Caption2 = 2,
    Text1 = 3,
    Text2 = 4,
    XDS = 5,
}
Public Enum MSVidCCService As Integer
    None = 0
    Caption1 = 1
    Caption2 = 2
    Text1 = 3
    Text2 = 4
    XDS = 5
End Enum
import enum

class MSVidCCService(enum.IntEnum):
    None = 0
    Caption1 = 1
    Caption2 = 2
    Text1 = 3
    Text2 = 4
    XDS = 5
// MSVidCCService
pub const None: i32 = 0;
pub const Caption1: i32 = 1;
pub const Caption2: i32 = 2;
pub const Text1: i32 = 3;
pub const Text2: i32 = 4;
pub const XDS: i32 = 5;
// MSVidCCService
const (
	None int32 = 0
	Caption1 int32 = 1
	Caption2 int32 = 2
	Text1 int32 = 3
	Text2 int32 = 4
	XDS int32 = 5
)
const
  None = 0;
  Caption1 = 1;
  Caption2 = 2;
  Text1 = 3;
  Text2 = 4;
  XDS = 5;
// MSVidCCService
pub const None: i32 = 0;
pub const Caption1: i32 = 1;
pub const Caption2: i32 = 2;
pub const Text1: i32 = 3;
pub const Text2: i32 = 4;
pub const XDS: i32 = 5;
const
  None* = 0
  Caption1* = 1
  Caption2* = 2
  Text1* = 3
  Text2* = 4
  XDS* = 5
enum MSVidCCService : int {
    None = 0,
    Caption1 = 1,
    Caption2 = 2,
    Text1 = 3,
    Text2 = 4,
    XDS = 5,
}
#define global None     0x0
#define global Caption1 0x1
#define global Caption2 0x2
#define global Text1    0x3
#define global Text2    0x4
#define global XDS      0x5