ホーム › Media.MediaFoundation › MF_MEDIA_ENGINE_CANPLAY
MF_MEDIA_ENGINE_CANPLAY
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED | 0 | 0x0 | Media Engine はこのリソースを再生できません。 |
| MF_MEDIA_ENGINE_CANPLAY_MAYBE | 1 | 0x1 | Media Engine はこのリソースを再生できる可能性があります。 |
| MF_MEDIA_ENGINE_CANPLAY_PROBABLY | 2 | 0x2 | Media Engine はこのリソースをおそらく再生できます。 |
公式ドキュメント
指定された種類のメディアリソースを Media Engine が再生できる見込みを指定します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum MF_MEDIA_ENGINE_CANPLAY : int {
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED = 0,
MF_MEDIA_ENGINE_CANPLAY_MAYBE = 1,
MF_MEDIA_ENGINE_CANPLAY_PROBABLY = 2
} MF_MEDIA_ENGINE_CANPLAY;public enum MF_MEDIA_ENGINE_CANPLAY : int
{
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED = 0,
MF_MEDIA_ENGINE_CANPLAY_MAYBE = 1,
MF_MEDIA_ENGINE_CANPLAY_PROBABLY = 2,
}Public Enum MF_MEDIA_ENGINE_CANPLAY As Integer
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED = 0
MF_MEDIA_ENGINE_CANPLAY_MAYBE = 1
MF_MEDIA_ENGINE_CANPLAY_PROBABLY = 2
End Enumimport enum
class MF_MEDIA_ENGINE_CANPLAY(enum.IntEnum):
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED = 0
MF_MEDIA_ENGINE_CANPLAY_MAYBE = 1
MF_MEDIA_ENGINE_CANPLAY_PROBABLY = 2// MF_MEDIA_ENGINE_CANPLAY
pub const MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED: i32 = 0;
pub const MF_MEDIA_ENGINE_CANPLAY_MAYBE: i32 = 1;
pub const MF_MEDIA_ENGINE_CANPLAY_PROBABLY: i32 = 2;// MF_MEDIA_ENGINE_CANPLAY
const (
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED int32 = 0
MF_MEDIA_ENGINE_CANPLAY_MAYBE int32 = 1
MF_MEDIA_ENGINE_CANPLAY_PROBABLY int32 = 2
)const
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED = 0;
MF_MEDIA_ENGINE_CANPLAY_MAYBE = 1;
MF_MEDIA_ENGINE_CANPLAY_PROBABLY = 2;// MF_MEDIA_ENGINE_CANPLAY
pub const MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED: i32 = 0;
pub const MF_MEDIA_ENGINE_CANPLAY_MAYBE: i32 = 1;
pub const MF_MEDIA_ENGINE_CANPLAY_PROBABLY: i32 = 2;const
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED* = 0
MF_MEDIA_ENGINE_CANPLAY_MAYBE* = 1
MF_MEDIA_ENGINE_CANPLAY_PROBABLY* = 2enum MF_MEDIA_ENGINE_CANPLAY : int {
MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED = 0,
MF_MEDIA_ENGINE_CANPLAY_MAYBE = 1,
MF_MEDIA_ENGINE_CANPLAY_PROBABLY = 2,
}#define global MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED 0x0
#define global MF_MEDIA_ENGINE_CANPLAY_MAYBE 0x1
#define global MF_MEDIA_ENGINE_CANPLAY_PROBABLY 0x2