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

DVD_NavCmdType

列挙型
基底型i4

メンバー 4

名前10進16進説明
DVD_NavCmdType_Pre10x1プリコマンドです。
DVD_NavCmdType_Post20x2ポストコマンドです。
DVD_NavCmdType_Cell30x3セルコマンドです。
DVD_NavCmdType_Button40x4ボタンコマンドです。

公式ドキュメント

[このページに関連する機能である DirectShow はレガシー機能です。この機能は MediaPlayerIMFMediaEngine、および Audio/Video Capture in Media Foundation に置き換えられました。これらの機能は Windows 10 および Windows 11 向けに最適化されています。Microsoft は、可能な場合は新しいコードで DirectShow ではなく MediaPlayerIMFMediaEngineAudio/Video Capture in Media Foundation を使用することを強く推奨します。また、レガシー API を使用している既存のコードについても、可能であれば新しい API を使用するように書き換えることを推奨します。]

DVD ナビゲーションコマンドの種類を定義します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

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

typedef enum DVD_NavCmdType : int {
    DVD_NavCmdType_Pre = 1,
    DVD_NavCmdType_Post = 2,
    DVD_NavCmdType_Cell = 3,
    DVD_NavCmdType_Button = 4
} DVD_NavCmdType;
public enum DVD_NavCmdType : int
{
    DVD_NavCmdType_Pre = 1,
    DVD_NavCmdType_Post = 2,
    DVD_NavCmdType_Cell = 3,
    DVD_NavCmdType_Button = 4,
}
Public Enum DVD_NavCmdType As Integer
    DVD_NavCmdType_Pre = 1
    DVD_NavCmdType_Post = 2
    DVD_NavCmdType_Cell = 3
    DVD_NavCmdType_Button = 4
End Enum
import enum

class DVD_NavCmdType(enum.IntEnum):
    DVD_NavCmdType_Pre = 1
    DVD_NavCmdType_Post = 2
    DVD_NavCmdType_Cell = 3
    DVD_NavCmdType_Button = 4
// DVD_NavCmdType
pub const DVD_NavCmdType_Pre: i32 = 1;
pub const DVD_NavCmdType_Post: i32 = 2;
pub const DVD_NavCmdType_Cell: i32 = 3;
pub const DVD_NavCmdType_Button: i32 = 4;
// DVD_NavCmdType
const (
	DVD_NavCmdType_Pre int32 = 1
	DVD_NavCmdType_Post int32 = 2
	DVD_NavCmdType_Cell int32 = 3
	DVD_NavCmdType_Button int32 = 4
)
const
  DVD_NavCmdType_Pre = 1;
  DVD_NavCmdType_Post = 2;
  DVD_NavCmdType_Cell = 3;
  DVD_NavCmdType_Button = 4;
// DVD_NavCmdType
pub const DVD_NavCmdType_Pre: i32 = 1;
pub const DVD_NavCmdType_Post: i32 = 2;
pub const DVD_NavCmdType_Cell: i32 = 3;
pub const DVD_NavCmdType_Button: i32 = 4;
const
  DVD_NavCmdType_Pre* = 1
  DVD_NavCmdType_Post* = 2
  DVD_NavCmdType_Cell* = 3
  DVD_NavCmdType_Button* = 4
enum DVD_NavCmdType : int {
    DVD_NavCmdType_Pre = 1,
    DVD_NavCmdType_Post = 2,
    DVD_NavCmdType_Cell = 3,
    DVD_NavCmdType_Button = 4,
}
#define global DVD_NavCmdType_Pre    0x1
#define global DVD_NavCmdType_Post   0x2
#define global DVD_NavCmdType_Cell   0x3
#define global DVD_NavCmdType_Button 0x4