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