ホーム › Media.DirectShow › EntitlementType
EntitlementType
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| Entitled | 0 | 0x0 |
| NotEntitled | 1 | 0x1 |
| TechnicalFailure | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum EntitlementType : int {
Entitled = 0,
NotEntitled = 1,
TechnicalFailure = 2
} EntitlementType;public enum EntitlementType : int
{
Entitled = 0,
NotEntitled = 1,
TechnicalFailure = 2,
}Public Enum EntitlementType As Integer
Entitled = 0
NotEntitled = 1
TechnicalFailure = 2
End Enumimport enum
class EntitlementType(enum.IntEnum):
Entitled = 0
NotEntitled = 1
TechnicalFailure = 2// EntitlementType
pub const Entitled: i32 = 0;
pub const NotEntitled: i32 = 1;
pub const TechnicalFailure: i32 = 2;// EntitlementType
const (
Entitled int32 = 0
NotEntitled int32 = 1
TechnicalFailure int32 = 2
)const
Entitled = 0;
NotEntitled = 1;
TechnicalFailure = 2;// EntitlementType
pub const Entitled: i32 = 0;
pub const NotEntitled: i32 = 1;
pub const TechnicalFailure: i32 = 2;const
Entitled* = 0
NotEntitled* = 1
TechnicalFailure* = 2enum EntitlementType : int {
Entitled = 0,
NotEntitled = 1,
TechnicalFailure = 2,
}#define global Entitled 0x0
#define global NotEntitled 0x1
#define global TechnicalFailure 0x2