Win32 API 日本語リファレンス
ホームSystem.Performance › StreamMode

StreamMode

列挙型
基底型i4

メンバー 4

名前10進16進
plaFile10x1
plaRealTime20x2
plaBoth30x3
plaBuffering40x4

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 4
enum 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