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

AMMSF_RENDER_FLAGS

列挙型フラグ
基底型i4

メンバー 6

名前10進16進
AMMSF_RENDERTYPEMASK30x3
AMMSF_RENDERTOEXISTING00x0
AMMSF_RENDERALLSTREAMS10x1
AMMSF_NORENDER20x2
AMMSF_NOCLOCK40x4
AMMSF_RUN80x8

各言語での定義

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

typedef enum AMMSF_RENDER_FLAGS : int {
    AMMSF_RENDERTYPEMASK = 3,
    AMMSF_RENDERTOEXISTING = 0,
    AMMSF_RENDERALLSTREAMS = 1,
    AMMSF_NORENDER = 2,
    AMMSF_NOCLOCK = 4,
    AMMSF_RUN = 8
} AMMSF_RENDER_FLAGS;
[Flags]
public enum AMMSF_RENDER_FLAGS : int
{
    AMMSF_RENDERTYPEMASK = 3,
    AMMSF_RENDERTOEXISTING = 0,
    AMMSF_RENDERALLSTREAMS = 1,
    AMMSF_NORENDER = 2,
    AMMSF_NOCLOCK = 4,
    AMMSF_RUN = 8,
}
<Flags>
Public Enum AMMSF_RENDER_FLAGS As Integer
    AMMSF_RENDERTYPEMASK = 3
    AMMSF_RENDERTOEXISTING = 0
    AMMSF_RENDERALLSTREAMS = 1
    AMMSF_NORENDER = 2
    AMMSF_NOCLOCK = 4
    AMMSF_RUN = 8
End Enum
import enum

class AMMSF_RENDER_FLAGS(enum.IntFlag):
    AMMSF_RENDERTYPEMASK = 3
    AMMSF_RENDERTOEXISTING = 0
    AMMSF_RENDERALLSTREAMS = 1
    AMMSF_NORENDER = 2
    AMMSF_NOCLOCK = 4
    AMMSF_RUN = 8
// AMMSF_RENDER_FLAGS (flags)
pub const AMMSF_RENDERTYPEMASK: i32 = 3;
pub const AMMSF_RENDERTOEXISTING: i32 = 0;
pub const AMMSF_RENDERALLSTREAMS: i32 = 1;
pub const AMMSF_NORENDER: i32 = 2;
pub const AMMSF_NOCLOCK: i32 = 4;
pub const AMMSF_RUN: i32 = 8;
// AMMSF_RENDER_FLAGS
const (
	AMMSF_RENDERTYPEMASK int32 = 3
	AMMSF_RENDERTOEXISTING int32 = 0
	AMMSF_RENDERALLSTREAMS int32 = 1
	AMMSF_NORENDER int32 = 2
	AMMSF_NOCLOCK int32 = 4
	AMMSF_RUN int32 = 8
)
const
  AMMSF_RENDERTYPEMASK = 3;
  AMMSF_RENDERTOEXISTING = 0;
  AMMSF_RENDERALLSTREAMS = 1;
  AMMSF_NORENDER = 2;
  AMMSF_NOCLOCK = 4;
  AMMSF_RUN = 8;
// AMMSF_RENDER_FLAGS
pub const AMMSF_RENDERTYPEMASK: i32 = 3;
pub const AMMSF_RENDERTOEXISTING: i32 = 0;
pub const AMMSF_RENDERALLSTREAMS: i32 = 1;
pub const AMMSF_NORENDER: i32 = 2;
pub const AMMSF_NOCLOCK: i32 = 4;
pub const AMMSF_RUN: i32 = 8;
const
  AMMSF_RENDERTYPEMASK* = 3
  AMMSF_RENDERTOEXISTING* = 0
  AMMSF_RENDERALLSTREAMS* = 1
  AMMSF_NORENDER* = 2
  AMMSF_NOCLOCK* = 4
  AMMSF_RUN* = 8
enum AMMSF_RENDER_FLAGS : int {
    AMMSF_RENDERTYPEMASK = 3,
    AMMSF_RENDERTOEXISTING = 0,
    AMMSF_RENDERALLSTREAMS = 1,
    AMMSF_NORENDER = 2,
    AMMSF_NOCLOCK = 4,
    AMMSF_RUN = 8,
}
#define global AMMSF_RENDERTYPEMASK   0x3
#define global AMMSF_RENDERTOEXISTING 0x0
#define global AMMSF_RENDERALLSTREAMS 0x1
#define global AMMSF_NORENDER         0x2
#define global AMMSF_NOCLOCK          0x4
#define global AMMSF_RUN              0x8
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。