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

DVBSystemType

列挙型
基底型i4

メンバー 5

名前10進16進
DVB_Cable00x0
DVB_Terrestrial10x1
DVB_Satellite20x2
ISDB_Terrestrial30x3
ISDB_Satellite40x4

各言語での定義

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

typedef enum DVBSystemType : int {
    DVB_Cable = 0,
    DVB_Terrestrial = 1,
    DVB_Satellite = 2,
    ISDB_Terrestrial = 3,
    ISDB_Satellite = 4
} DVBSystemType;
public enum DVBSystemType : int
{
    DVB_Cable = 0,
    DVB_Terrestrial = 1,
    DVB_Satellite = 2,
    ISDB_Terrestrial = 3,
    ISDB_Satellite = 4,
}
Public Enum DVBSystemType As Integer
    DVB_Cable = 0
    DVB_Terrestrial = 1
    DVB_Satellite = 2
    ISDB_Terrestrial = 3
    ISDB_Satellite = 4
End Enum
import enum

class DVBSystemType(enum.IntEnum):
    DVB_Cable = 0
    DVB_Terrestrial = 1
    DVB_Satellite = 2
    ISDB_Terrestrial = 3
    ISDB_Satellite = 4
// DVBSystemType
pub const DVB_Cable: i32 = 0;
pub const DVB_Terrestrial: i32 = 1;
pub const DVB_Satellite: i32 = 2;
pub const ISDB_Terrestrial: i32 = 3;
pub const ISDB_Satellite: i32 = 4;
// DVBSystemType
const (
	DVB_Cable int32 = 0
	DVB_Terrestrial int32 = 1
	DVB_Satellite int32 = 2
	ISDB_Terrestrial int32 = 3
	ISDB_Satellite int32 = 4
)
const
  DVB_Cable = 0;
  DVB_Terrestrial = 1;
  DVB_Satellite = 2;
  ISDB_Terrestrial = 3;
  ISDB_Satellite = 4;
// DVBSystemType
pub const DVB_Cable: i32 = 0;
pub const DVB_Terrestrial: i32 = 1;
pub const DVB_Satellite: i32 = 2;
pub const ISDB_Terrestrial: i32 = 3;
pub const ISDB_Satellite: i32 = 4;
const
  DVB_Cable* = 0
  DVB_Terrestrial* = 1
  DVB_Satellite* = 2
  ISDB_Terrestrial* = 3
  ISDB_Satellite* = 4
enum DVBSystemType : int {
    DVB_Cable = 0,
    DVB_Terrestrial = 1,
    DVB_Satellite = 2,
    ISDB_Terrestrial = 3,
    ISDB_Satellite = 4,
}
#define global DVB_Cable        0x0
#define global DVB_Terrestrial  0x1
#define global DVB_Satellite    0x2
#define global ISDB_Terrestrial 0x3
#define global ISDB_Satellite   0x4