ホーム › Media.KernelStreaming › PIPE_STATE
PIPE_STATE
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| PipeState_DontCare | 0 | 0x0 |
| PipeState_RangeNotFixed | 1 | 0x1 |
| PipeState_RangeFixed | 2 | 0x2 |
| PipeState_CompressionUnknown | 3 | 0x3 |
| PipeState_Finalized | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum PIPE_STATE : int {
PipeState_DontCare = 0,
PipeState_RangeNotFixed = 1,
PipeState_RangeFixed = 2,
PipeState_CompressionUnknown = 3,
PipeState_Finalized = 4
} PIPE_STATE;public enum PIPE_STATE : int
{
PipeState_DontCare = 0,
PipeState_RangeNotFixed = 1,
PipeState_RangeFixed = 2,
PipeState_CompressionUnknown = 3,
PipeState_Finalized = 4,
}Public Enum PIPE_STATE As Integer
PipeState_DontCare = 0
PipeState_RangeNotFixed = 1
PipeState_RangeFixed = 2
PipeState_CompressionUnknown = 3
PipeState_Finalized = 4
End Enumimport enum
class PIPE_STATE(enum.IntEnum):
PipeState_DontCare = 0
PipeState_RangeNotFixed = 1
PipeState_RangeFixed = 2
PipeState_CompressionUnknown = 3
PipeState_Finalized = 4// PIPE_STATE
pub const PipeState_DontCare: i32 = 0;
pub const PipeState_RangeNotFixed: i32 = 1;
pub const PipeState_RangeFixed: i32 = 2;
pub const PipeState_CompressionUnknown: i32 = 3;
pub const PipeState_Finalized: i32 = 4;// PIPE_STATE
const (
PipeState_DontCare int32 = 0
PipeState_RangeNotFixed int32 = 1
PipeState_RangeFixed int32 = 2
PipeState_CompressionUnknown int32 = 3
PipeState_Finalized int32 = 4
)const
PipeState_DontCare = 0;
PipeState_RangeNotFixed = 1;
PipeState_RangeFixed = 2;
PipeState_CompressionUnknown = 3;
PipeState_Finalized = 4;// PIPE_STATE
pub const PipeState_DontCare: i32 = 0;
pub const PipeState_RangeNotFixed: i32 = 1;
pub const PipeState_RangeFixed: i32 = 2;
pub const PipeState_CompressionUnknown: i32 = 3;
pub const PipeState_Finalized: i32 = 4;const
PipeState_DontCare* = 0
PipeState_RangeNotFixed* = 1
PipeState_RangeFixed* = 2
PipeState_CompressionUnknown* = 3
PipeState_Finalized* = 4enum PIPE_STATE : int {
PipeState_DontCare = 0,
PipeState_RangeNotFixed = 1,
PipeState_RangeFixed = 2,
PipeState_CompressionUnknown = 3,
PipeState_Finalized = 4,
}#define global PipeState_DontCare 0x0
#define global PipeState_RangeNotFixed 0x1
#define global PipeState_RangeFixed 0x2
#define global PipeState_CompressionUnknown 0x3
#define global PipeState_Finalized 0x4