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