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

SpeechRecoContextState

列挙型
基底型i4

メンバー 2

名前10進16進
SRCS_Disabled00x0
SRCS_Enabled10x1

各言語での定義

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

typedef enum SpeechRecoContextState : int {
    SRCS_Disabled = 0,
    SRCS_Enabled = 1
} SpeechRecoContextState;
public enum SpeechRecoContextState : int
{
    SRCS_Disabled = 0,
    SRCS_Enabled = 1,
}
Public Enum SpeechRecoContextState As Integer
    SRCS_Disabled = 0
    SRCS_Enabled = 1
End Enum
import enum

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