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

MSVidCCService

列挙型
基底型i4

メンバー 6

名前10進16進
None00x0
Caption110x1
Caption220x2
Text130x3
Text240x4
XDS50x5

各言語での定義

列挙メンバーの定義。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