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

SPRECOEVENTFLAGS

列挙型
基底型i4

メンバー 7

名前10進16進
SPREF_AutoPause10x1
SPREF_Emulated20x2
SPREF_SMLTimeout40x4
SPREF_ExtendableParse80x8
SPREF_ReSent160x10
SPREF_Hypothesis320x20
SPREF_FalseRecognition640x40

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 64
enum 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