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