ホーム › Media.Speech › SPRECOEVENTFLAGS
SPRECOEVENTFLAGS
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| SPREF_AutoPause | 1 | 0x1 |
| SPREF_Emulated | 2 | 0x2 |
| SPREF_SMLTimeout | 4 | 0x4 |
| SPREF_ExtendableParse | 8 | 0x8 |
| SPREF_ReSent | 16 | 0x10 |
| SPREF_Hypothesis | 32 | 0x20 |
| SPREF_FalseRecognition | 64 | 0x40 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum SPRECOEVENTFLAGS : int {
SPREF_AutoPause = 1,
SPREF_Emulated = 2,
SPREF_SMLTimeout = 4,
SPREF_ExtendableParse = 8,
SPREF_ReSent = 16,
SPREF_Hypothesis = 32,
SPREF_FalseRecognition = 64
} SPRECOEVENTFLAGS;public enum SPRECOEVENTFLAGS : int
{
SPREF_AutoPause = 1,
SPREF_Emulated = 2,
SPREF_SMLTimeout = 4,
SPREF_ExtendableParse = 8,
SPREF_ReSent = 16,
SPREF_Hypothesis = 32,
SPREF_FalseRecognition = 64,
}Public Enum SPRECOEVENTFLAGS As Integer
SPREF_AutoPause = 1
SPREF_Emulated = 2
SPREF_SMLTimeout = 4
SPREF_ExtendableParse = 8
SPREF_ReSent = 16
SPREF_Hypothesis = 32
SPREF_FalseRecognition = 64
End Enumimport enum
class SPRECOEVENTFLAGS(enum.IntEnum):
SPREF_AutoPause = 1
SPREF_Emulated = 2
SPREF_SMLTimeout = 4
SPREF_ExtendableParse = 8
SPREF_ReSent = 16
SPREF_Hypothesis = 32
SPREF_FalseRecognition = 64// SPRECOEVENTFLAGS
pub const SPREF_AutoPause: i32 = 1;
pub const SPREF_Emulated: i32 = 2;
pub const SPREF_SMLTimeout: i32 = 4;
pub const SPREF_ExtendableParse: i32 = 8;
pub const SPREF_ReSent: i32 = 16;
pub const SPREF_Hypothesis: i32 = 32;
pub const SPREF_FalseRecognition: i32 = 64;// SPRECOEVENTFLAGS
const (
SPREF_AutoPause int32 = 1
SPREF_Emulated int32 = 2
SPREF_SMLTimeout int32 = 4
SPREF_ExtendableParse int32 = 8
SPREF_ReSent int32 = 16
SPREF_Hypothesis int32 = 32
SPREF_FalseRecognition int32 = 64
)const
SPREF_AutoPause = 1;
SPREF_Emulated = 2;
SPREF_SMLTimeout = 4;
SPREF_ExtendableParse = 8;
SPREF_ReSent = 16;
SPREF_Hypothesis = 32;
SPREF_FalseRecognition = 64;// SPRECOEVENTFLAGS
pub const SPREF_AutoPause: i32 = 1;
pub const SPREF_Emulated: i32 = 2;
pub const SPREF_SMLTimeout: i32 = 4;
pub const SPREF_ExtendableParse: i32 = 8;
pub const SPREF_ReSent: i32 = 16;
pub const SPREF_Hypothesis: i32 = 32;
pub const SPREF_FalseRecognition: i32 = 64;const
SPREF_AutoPause* = 1
SPREF_Emulated* = 2
SPREF_SMLTimeout* = 4
SPREF_ExtendableParse* = 8
SPREF_ReSent* = 16
SPREF_Hypothesis* = 32
SPREF_FalseRecognition* = 64enum SPRECOEVENTFLAGS : int {
SPREF_AutoPause = 1,
SPREF_Emulated = 2,
SPREF_SMLTimeout = 4,
SPREF_ExtendableParse = 8,
SPREF_ReSent = 16,
SPREF_Hypothesis = 32,
SPREF_FalseRecognition = 64,
}#define global SPREF_AutoPause 0x1
#define global SPREF_Emulated 0x2
#define global SPREF_SMLTimeout 0x4
#define global SPREF_ExtendableParse 0x8
#define global SPREF_ReSent 0x10
#define global SPREF_Hypothesis 0x20
#define global SPREF_FalseRecognition 0x40