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

KSRESET

列挙型
基底型i4

メンバー 2

名前10進16進
KSRESET_BEGIN00x0
KSRESET_END10x1

各言語での定義

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

typedef enum KSRESET : int {
    KSRESET_BEGIN = 0,
    KSRESET_END = 1
} KSRESET;
public enum KSRESET : int
{
    KSRESET_BEGIN = 0,
    KSRESET_END = 1,
}
Public Enum KSRESET As Integer
    KSRESET_BEGIN = 0
    KSRESET_END = 1
End Enum
import enum

class KSRESET(enum.IntEnum):
    KSRESET_BEGIN = 0
    KSRESET_END = 1
// KSRESET
pub const KSRESET_BEGIN: i32 = 0;
pub const KSRESET_END: i32 = 1;
// KSRESET
const (
	KSRESET_BEGIN int32 = 0
	KSRESET_END int32 = 1
)
const
  KSRESET_BEGIN = 0;
  KSRESET_END = 1;
// KSRESET
pub const KSRESET_BEGIN: i32 = 0;
pub const KSRESET_END: i32 = 1;
const
  KSRESET_BEGIN* = 0
  KSRESET_END* = 1
enum KSRESET : int {
    KSRESET_BEGIN = 0,
    KSRESET_END = 1,
}
#define global KSRESET_BEGIN 0x0
#define global KSRESET_END   0x1