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

VfwCompressDialogs

列挙型
基底型i4

メンバー 4

名前10進16進説明
VfwCompressDialog_Config10x1Configure (構成) ダイアログ ボックスです。
VfwCompressDialog_About20x2About (バージョン情報) ダイアログ ボックスです。
VfwCompressDialog_QueryConfig40x4Configure ダイアログ ボックスが使用可能かどうかを指定します。
VfwCompressDialog_QueryAbout80x8About ダイアログ ボックスが使用可能かどうかを指定します。

公式ドキュメント

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

Video for Windows 圧縮 (コーデック) ドライバーに存在する可能性があるダイアログ ボックスを指定します。

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

各言語での定義

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

typedef enum VfwCompressDialogs : int {
    VfwCompressDialog_Config = 1,
    VfwCompressDialog_About = 2,
    VfwCompressDialog_QueryConfig = 4,
    VfwCompressDialog_QueryAbout = 8
} VfwCompressDialogs;
public enum VfwCompressDialogs : int
{
    VfwCompressDialog_Config = 1,
    VfwCompressDialog_About = 2,
    VfwCompressDialog_QueryConfig = 4,
    VfwCompressDialog_QueryAbout = 8,
}
Public Enum VfwCompressDialogs As Integer
    VfwCompressDialog_Config = 1
    VfwCompressDialog_About = 2
    VfwCompressDialog_QueryConfig = 4
    VfwCompressDialog_QueryAbout = 8
End Enum
import enum

class VfwCompressDialogs(enum.IntEnum):
    VfwCompressDialog_Config = 1
    VfwCompressDialog_About = 2
    VfwCompressDialog_QueryConfig = 4
    VfwCompressDialog_QueryAbout = 8
// VfwCompressDialogs
pub const VfwCompressDialog_Config: i32 = 1;
pub const VfwCompressDialog_About: i32 = 2;
pub const VfwCompressDialog_QueryConfig: i32 = 4;
pub const VfwCompressDialog_QueryAbout: i32 = 8;
// VfwCompressDialogs
const (
	VfwCompressDialog_Config int32 = 1
	VfwCompressDialog_About int32 = 2
	VfwCompressDialog_QueryConfig int32 = 4
	VfwCompressDialog_QueryAbout int32 = 8
)
const
  VfwCompressDialog_Config = 1;
  VfwCompressDialog_About = 2;
  VfwCompressDialog_QueryConfig = 4;
  VfwCompressDialog_QueryAbout = 8;
// VfwCompressDialogs
pub const VfwCompressDialog_Config: i32 = 1;
pub const VfwCompressDialog_About: i32 = 2;
pub const VfwCompressDialog_QueryConfig: i32 = 4;
pub const VfwCompressDialog_QueryAbout: i32 = 8;
const
  VfwCompressDialog_Config* = 1
  VfwCompressDialog_About* = 2
  VfwCompressDialog_QueryConfig* = 4
  VfwCompressDialog_QueryAbout* = 8
enum VfwCompressDialogs : int {
    VfwCompressDialog_Config = 1,
    VfwCompressDialog_About = 2,
    VfwCompressDialog_QueryConfig = 4,
    VfwCompressDialog_QueryAbout = 8,
}
#define global VfwCompressDialog_Config      0x1
#define global VfwCompressDialog_About       0x2
#define global VfwCompressDialog_QueryConfig 0x4
#define global VfwCompressDialog_QueryAbout  0x8