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

SpeechGrammarState

列挙型
基底型i4

メンバー 3

名前10進16進
SGSEnabled10x1
SGSDisabled00x0
SGSExclusive30x3

各言語での定義

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

typedef enum SpeechGrammarState : int {
    SGSEnabled = 1,
    SGSDisabled = 0,
    SGSExclusive = 3
} SpeechGrammarState;
public enum SpeechGrammarState : int
{
    SGSEnabled = 1,
    SGSDisabled = 0,
    SGSExclusive = 3,
}
Public Enum SpeechGrammarState As Integer
    SGSEnabled = 1
    SGSDisabled = 0
    SGSExclusive = 3
End Enum
import enum

class SpeechGrammarState(enum.IntEnum):
    SGSEnabled = 1
    SGSDisabled = 0
    SGSExclusive = 3
// SpeechGrammarState
pub const SGSEnabled: i32 = 1;
pub const SGSDisabled: i32 = 0;
pub const SGSExclusive: i32 = 3;
// SpeechGrammarState
const (
	SGSEnabled int32 = 1
	SGSDisabled int32 = 0
	SGSExclusive int32 = 3
)
const
  SGSEnabled = 1;
  SGSDisabled = 0;
  SGSExclusive = 3;
// SpeechGrammarState
pub const SGSEnabled: i32 = 1;
pub const SGSDisabled: i32 = 0;
pub const SGSExclusive: i32 = 3;
const
  SGSEnabled* = 1
  SGSDisabled* = 0
  SGSExclusive* = 3
enum SpeechGrammarState : int {
    SGSEnabled = 1,
    SGSDisabled = 0,
    SGSExclusive = 3,
}
#define global SGSEnabled   0x1
#define global SGSDisabled  0x0
#define global SGSExclusive 0x3