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

DVD_SUBPICTURE_CODING

列挙型
基底型i4

メンバー 3

名前10進16進
DVD_SPCoding_RunLength00x0
DVD_SPCoding_Extended10x1
DVD_SPCoding_Other20x2

各言語での定義

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

typedef enum DVD_SUBPICTURE_CODING : int {
    DVD_SPCoding_RunLength = 0,
    DVD_SPCoding_Extended = 1,
    DVD_SPCoding_Other = 2
} DVD_SUBPICTURE_CODING;
public enum DVD_SUBPICTURE_CODING : int
{
    DVD_SPCoding_RunLength = 0,
    DVD_SPCoding_Extended = 1,
    DVD_SPCoding_Other = 2,
}
Public Enum DVD_SUBPICTURE_CODING As Integer
    DVD_SPCoding_RunLength = 0
    DVD_SPCoding_Extended = 1
    DVD_SPCoding_Other = 2
End Enum
import enum

class DVD_SUBPICTURE_CODING(enum.IntEnum):
    DVD_SPCoding_RunLength = 0
    DVD_SPCoding_Extended = 1
    DVD_SPCoding_Other = 2
// DVD_SUBPICTURE_CODING
pub const DVD_SPCoding_RunLength: i32 = 0;
pub const DVD_SPCoding_Extended: i32 = 1;
pub const DVD_SPCoding_Other: i32 = 2;
// DVD_SUBPICTURE_CODING
const (
	DVD_SPCoding_RunLength int32 = 0
	DVD_SPCoding_Extended int32 = 1
	DVD_SPCoding_Other int32 = 2
)
const
  DVD_SPCoding_RunLength = 0;
  DVD_SPCoding_Extended = 1;
  DVD_SPCoding_Other = 2;
// DVD_SUBPICTURE_CODING
pub const DVD_SPCoding_RunLength: i32 = 0;
pub const DVD_SPCoding_Extended: i32 = 1;
pub const DVD_SPCoding_Other: i32 = 2;
const
  DVD_SPCoding_RunLength* = 0
  DVD_SPCoding_Extended* = 1
  DVD_SPCoding_Other* = 2
enum DVD_SUBPICTURE_CODING : int {
    DVD_SPCoding_RunLength = 0,
    DVD_SPCoding_Extended = 1,
    DVD_SPCoding_Other = 2,
}
#define global DVD_SPCoding_RunLength 0x0
#define global DVD_SPCoding_Extended  0x1
#define global DVD_SPCoding_Other     0x2