ホーム › Media.DirectShow › AMMSF_RENDER_FLAGS
AMMSF_RENDER_FLAGS
列挙型フラグメンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| AMMSF_RENDERTYPEMASK | 3 | 0x3 |
| AMMSF_RENDERTOEXISTING | 0 | 0x0 |
| AMMSF_RENDERALLSTREAMS | 1 | 0x1 |
| AMMSF_NORENDER | 2 | 0x2 |
| AMMSF_NOCLOCK | 4 | 0x4 |
| AMMSF_RUN | 8 | 0x8 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 8enum 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)。