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

DownResEventParam

列挙型
基底型i4

メンバー 3

名前10進16進
DOWNRES_Always00x0
DOWNRES_InWindowOnly10x1
DOWNRES_Undefined20x2

各言語での定義

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

typedef enum DownResEventParam : int {
    DOWNRES_Always = 0,
    DOWNRES_InWindowOnly = 1,
    DOWNRES_Undefined = 2
} DownResEventParam;
public enum DownResEventParam : int
{
    DOWNRES_Always = 0,
    DOWNRES_InWindowOnly = 1,
    DOWNRES_Undefined = 2,
}
Public Enum DownResEventParam As Integer
    DOWNRES_Always = 0
    DOWNRES_InWindowOnly = 1
    DOWNRES_Undefined = 2
End Enum
import enum

class DownResEventParam(enum.IntEnum):
    DOWNRES_Always = 0
    DOWNRES_InWindowOnly = 1
    DOWNRES_Undefined = 2
// DownResEventParam
pub const DOWNRES_Always: i32 = 0;
pub const DOWNRES_InWindowOnly: i32 = 1;
pub const DOWNRES_Undefined: i32 = 2;
// DownResEventParam
const (
	DOWNRES_Always int32 = 0
	DOWNRES_InWindowOnly int32 = 1
	DOWNRES_Undefined int32 = 2
)
const
  DOWNRES_Always = 0;
  DOWNRES_InWindowOnly = 1;
  DOWNRES_Undefined = 2;
// DownResEventParam
pub const DOWNRES_Always: i32 = 0;
pub const DOWNRES_InWindowOnly: i32 = 1;
pub const DOWNRES_Undefined: i32 = 2;
const
  DOWNRES_Always* = 0
  DOWNRES_InWindowOnly* = 1
  DOWNRES_Undefined* = 2
enum DownResEventParam : int {
    DOWNRES_Always = 0,
    DOWNRES_InWindowOnly = 1,
    DOWNRES_Undefined = 2,
}
#define global DOWNRES_Always       0x0
#define global DOWNRES_InWindowOnly 0x1
#define global DOWNRES_Undefined    0x2