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

DVD_ERROR

列挙型
基底型i4

メンバー 10

名前10進16進
DVD_ERROR_Unexpected10x1
DVD_ERROR_CopyProtectFail20x2
DVD_ERROR_InvalidDVD1_0Disc30x3
DVD_ERROR_InvalidDiscRegion40x4
DVD_ERROR_LowParentalLevel50x5
DVD_ERROR_MacrovisionFail60x6
DVD_ERROR_IncompatibleSystemAndDecoderRegions70x7
DVD_ERROR_IncompatibleDiscAndDecoderRegions80x8
DVD_ERROR_CopyProtectOutputFail90x9
DVD_ERROR_CopyProtectOutputNotSupported100xA

各言語での定義

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

typedef enum DVD_ERROR : int {
    DVD_ERROR_Unexpected = 1,
    DVD_ERROR_CopyProtectFail = 2,
    DVD_ERROR_InvalidDVD1_0Disc = 3,
    DVD_ERROR_InvalidDiscRegion = 4,
    DVD_ERROR_LowParentalLevel = 5,
    DVD_ERROR_MacrovisionFail = 6,
    DVD_ERROR_IncompatibleSystemAndDecoderRegions = 7,
    DVD_ERROR_IncompatibleDiscAndDecoderRegions = 8,
    DVD_ERROR_CopyProtectOutputFail = 9,
    DVD_ERROR_CopyProtectOutputNotSupported = 10
} DVD_ERROR;
public enum DVD_ERROR : int
{
    DVD_ERROR_Unexpected = 1,
    DVD_ERROR_CopyProtectFail = 2,
    DVD_ERROR_InvalidDVD1_0Disc = 3,
    DVD_ERROR_InvalidDiscRegion = 4,
    DVD_ERROR_LowParentalLevel = 5,
    DVD_ERROR_MacrovisionFail = 6,
    DVD_ERROR_IncompatibleSystemAndDecoderRegions = 7,
    DVD_ERROR_IncompatibleDiscAndDecoderRegions = 8,
    DVD_ERROR_CopyProtectOutputFail = 9,
    DVD_ERROR_CopyProtectOutputNotSupported = 10,
}
Public Enum DVD_ERROR As Integer
    DVD_ERROR_Unexpected = 1
    DVD_ERROR_CopyProtectFail = 2
    DVD_ERROR_InvalidDVD1_0Disc = 3
    DVD_ERROR_InvalidDiscRegion = 4
    DVD_ERROR_LowParentalLevel = 5
    DVD_ERROR_MacrovisionFail = 6
    DVD_ERROR_IncompatibleSystemAndDecoderRegions = 7
    DVD_ERROR_IncompatibleDiscAndDecoderRegions = 8
    DVD_ERROR_CopyProtectOutputFail = 9
    DVD_ERROR_CopyProtectOutputNotSupported = 10
End Enum
import enum

class DVD_ERROR(enum.IntEnum):
    DVD_ERROR_Unexpected = 1
    DVD_ERROR_CopyProtectFail = 2
    DVD_ERROR_InvalidDVD1_0Disc = 3
    DVD_ERROR_InvalidDiscRegion = 4
    DVD_ERROR_LowParentalLevel = 5
    DVD_ERROR_MacrovisionFail = 6
    DVD_ERROR_IncompatibleSystemAndDecoderRegions = 7
    DVD_ERROR_IncompatibleDiscAndDecoderRegions = 8
    DVD_ERROR_CopyProtectOutputFail = 9
    DVD_ERROR_CopyProtectOutputNotSupported = 10
// DVD_ERROR
pub const DVD_ERROR_Unexpected: i32 = 1;
pub const DVD_ERROR_CopyProtectFail: i32 = 2;
pub const DVD_ERROR_InvalidDVD1_0Disc: i32 = 3;
pub const DVD_ERROR_InvalidDiscRegion: i32 = 4;
pub const DVD_ERROR_LowParentalLevel: i32 = 5;
pub const DVD_ERROR_MacrovisionFail: i32 = 6;
pub const DVD_ERROR_IncompatibleSystemAndDecoderRegions: i32 = 7;
pub const DVD_ERROR_IncompatibleDiscAndDecoderRegions: i32 = 8;
pub const DVD_ERROR_CopyProtectOutputFail: i32 = 9;
pub const DVD_ERROR_CopyProtectOutputNotSupported: i32 = 10;
// DVD_ERROR
const (
	DVD_ERROR_Unexpected int32 = 1
	DVD_ERROR_CopyProtectFail int32 = 2
	DVD_ERROR_InvalidDVD1_0Disc int32 = 3
	DVD_ERROR_InvalidDiscRegion int32 = 4
	DVD_ERROR_LowParentalLevel int32 = 5
	DVD_ERROR_MacrovisionFail int32 = 6
	DVD_ERROR_IncompatibleSystemAndDecoderRegions int32 = 7
	DVD_ERROR_IncompatibleDiscAndDecoderRegions int32 = 8
	DVD_ERROR_CopyProtectOutputFail int32 = 9
	DVD_ERROR_CopyProtectOutputNotSupported int32 = 10
)
const
  DVD_ERROR_Unexpected = 1;
  DVD_ERROR_CopyProtectFail = 2;
  DVD_ERROR_InvalidDVD1_0Disc = 3;
  DVD_ERROR_InvalidDiscRegion = 4;
  DVD_ERROR_LowParentalLevel = 5;
  DVD_ERROR_MacrovisionFail = 6;
  DVD_ERROR_IncompatibleSystemAndDecoderRegions = 7;
  DVD_ERROR_IncompatibleDiscAndDecoderRegions = 8;
  DVD_ERROR_CopyProtectOutputFail = 9;
  DVD_ERROR_CopyProtectOutputNotSupported = 10;
// DVD_ERROR
pub const DVD_ERROR_Unexpected: i32 = 1;
pub const DVD_ERROR_CopyProtectFail: i32 = 2;
pub const DVD_ERROR_InvalidDVD1_0Disc: i32 = 3;
pub const DVD_ERROR_InvalidDiscRegion: i32 = 4;
pub const DVD_ERROR_LowParentalLevel: i32 = 5;
pub const DVD_ERROR_MacrovisionFail: i32 = 6;
pub const DVD_ERROR_IncompatibleSystemAndDecoderRegions: i32 = 7;
pub const DVD_ERROR_IncompatibleDiscAndDecoderRegions: i32 = 8;
pub const DVD_ERROR_CopyProtectOutputFail: i32 = 9;
pub const DVD_ERROR_CopyProtectOutputNotSupported: i32 = 10;
const
  DVD_ERROR_Unexpected* = 1
  DVD_ERROR_CopyProtectFail* = 2
  DVD_ERROR_InvalidDVD1_0Disc* = 3
  DVD_ERROR_InvalidDiscRegion* = 4
  DVD_ERROR_LowParentalLevel* = 5
  DVD_ERROR_MacrovisionFail* = 6
  DVD_ERROR_IncompatibleSystemAndDecoderRegions* = 7
  DVD_ERROR_IncompatibleDiscAndDecoderRegions* = 8
  DVD_ERROR_CopyProtectOutputFail* = 9
  DVD_ERROR_CopyProtectOutputNotSupported* = 10
enum DVD_ERROR : int {
    DVD_ERROR_Unexpected = 1,
    DVD_ERROR_CopyProtectFail = 2,
    DVD_ERROR_InvalidDVD1_0Disc = 3,
    DVD_ERROR_InvalidDiscRegion = 4,
    DVD_ERROR_LowParentalLevel = 5,
    DVD_ERROR_MacrovisionFail = 6,
    DVD_ERROR_IncompatibleSystemAndDecoderRegions = 7,
    DVD_ERROR_IncompatibleDiscAndDecoderRegions = 8,
    DVD_ERROR_CopyProtectOutputFail = 9,
    DVD_ERROR_CopyProtectOutputNotSupported = 10,
}
#define global DVD_ERROR_Unexpected                          0x1
#define global DVD_ERROR_CopyProtectFail                     0x2
#define global DVD_ERROR_InvalidDVD1_0Disc                   0x3
#define global DVD_ERROR_InvalidDiscRegion                   0x4
#define global DVD_ERROR_LowParentalLevel                    0x5
#define global DVD_ERROR_MacrovisionFail                     0x6
#define global DVD_ERROR_IncompatibleSystemAndDecoderRegions 0x7
#define global DVD_ERROR_IncompatibleDiscAndDecoderRegions   0x8
#define global DVD_ERROR_CopyProtectOutputFail               0x9
#define global DVD_ERROR_CopyProtectOutputNotSupported       0xA