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

DVD_SUBPICTURE_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
DVD_SPType_NotSpecified00x0
DVD_SPType_Language10x1
DVD_SPType_Other20x2

各言語での定義

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

typedef enum DVD_SUBPICTURE_TYPE : int {
    DVD_SPType_NotSpecified = 0,
    DVD_SPType_Language = 1,
    DVD_SPType_Other = 2
} DVD_SUBPICTURE_TYPE;
public enum DVD_SUBPICTURE_TYPE : int
{
    DVD_SPType_NotSpecified = 0,
    DVD_SPType_Language = 1,
    DVD_SPType_Other = 2,
}
Public Enum DVD_SUBPICTURE_TYPE As Integer
    DVD_SPType_NotSpecified = 0
    DVD_SPType_Language = 1
    DVD_SPType_Other = 2
End Enum
import enum

class DVD_SUBPICTURE_TYPE(enum.IntEnum):
    DVD_SPType_NotSpecified = 0
    DVD_SPType_Language = 1
    DVD_SPType_Other = 2
// DVD_SUBPICTURE_TYPE
pub const DVD_SPType_NotSpecified: i32 = 0;
pub const DVD_SPType_Language: i32 = 1;
pub const DVD_SPType_Other: i32 = 2;
// DVD_SUBPICTURE_TYPE
const (
	DVD_SPType_NotSpecified int32 = 0
	DVD_SPType_Language int32 = 1
	DVD_SPType_Other int32 = 2
)
const
  DVD_SPType_NotSpecified = 0;
  DVD_SPType_Language = 1;
  DVD_SPType_Other = 2;
// DVD_SUBPICTURE_TYPE
pub const DVD_SPType_NotSpecified: i32 = 0;
pub const DVD_SPType_Language: i32 = 1;
pub const DVD_SPType_Other: i32 = 2;
const
  DVD_SPType_NotSpecified* = 0
  DVD_SPType_Language* = 1
  DVD_SPType_Other* = 2
enum DVD_SUBPICTURE_TYPE : int {
    DVD_SPType_NotSpecified = 0,
    DVD_SPType_Language = 1,
    DVD_SPType_Other = 2,
}
#define global DVD_SPType_NotSpecified 0x0
#define global DVD_SPType_Language     0x1
#define global DVD_SPType_Other        0x2