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

SpeechRunState

列挙型
基底型i4

メンバー 2

名前10進16進
SRSEDone10x1
SRSEIsSpeaking20x2

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2
enum SpeechRunState : int {
    SRSEDone = 1,
    SRSEIsSpeaking = 2,
}
#define global SRSEDone       0x1
#define global SRSEIsSpeaking 0x2