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

SpeechRecognitionType

列挙型
基底型i4

メンバー 6

名前10進16進
SRTStandard00x0
SRTAutopause10x1
SRTEmulated20x2
SRTSMLTimeout40x4
SRTExtendableParse80x8
SRTReSent160x10

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum SpeechRecognitionType : int {
    SRTStandard = 0,
    SRTAutopause = 1,
    SRTEmulated = 2,
    SRTSMLTimeout = 4,
    SRTExtendableParse = 8,
    SRTReSent = 16
} SpeechRecognitionType;
public enum SpeechRecognitionType : int
{
    SRTStandard = 0,
    SRTAutopause = 1,
    SRTEmulated = 2,
    SRTSMLTimeout = 4,
    SRTExtendableParse = 8,
    SRTReSent = 16,
}
Public Enum SpeechRecognitionType As Integer
    SRTStandard = 0
    SRTAutopause = 1
    SRTEmulated = 2
    SRTSMLTimeout = 4
    SRTExtendableParse = 8
    SRTReSent = 16
End Enum
import enum

class SpeechRecognitionType(enum.IntEnum):
    SRTStandard = 0
    SRTAutopause = 1
    SRTEmulated = 2
    SRTSMLTimeout = 4
    SRTExtendableParse = 8
    SRTReSent = 16
// SpeechRecognitionType
pub const SRTStandard: i32 = 0;
pub const SRTAutopause: i32 = 1;
pub const SRTEmulated: i32 = 2;
pub const SRTSMLTimeout: i32 = 4;
pub const SRTExtendableParse: i32 = 8;
pub const SRTReSent: i32 = 16;
// SpeechRecognitionType
const (
	SRTStandard int32 = 0
	SRTAutopause int32 = 1
	SRTEmulated int32 = 2
	SRTSMLTimeout int32 = 4
	SRTExtendableParse int32 = 8
	SRTReSent int32 = 16
)
const
  SRTStandard = 0;
  SRTAutopause = 1;
  SRTEmulated = 2;
  SRTSMLTimeout = 4;
  SRTExtendableParse = 8;
  SRTReSent = 16;
// SpeechRecognitionType
pub const SRTStandard: i32 = 0;
pub const SRTAutopause: i32 = 1;
pub const SRTEmulated: i32 = 2;
pub const SRTSMLTimeout: i32 = 4;
pub const SRTExtendableParse: i32 = 8;
pub const SRTReSent: i32 = 16;
const
  SRTStandard* = 0
  SRTAutopause* = 1
  SRTEmulated* = 2
  SRTSMLTimeout* = 4
  SRTExtendableParse* = 8
  SRTReSent* = 16
enum SpeechRecognitionType : int {
    SRTStandard = 0,
    SRTAutopause = 1,
    SRTEmulated = 2,
    SRTSMLTimeout = 4,
    SRTExtendableParse = 8,
    SRTReSent = 16,
}
#define global SRTStandard        0x0
#define global SRTAutopause       0x1
#define global SRTEmulated        0x2
#define global SRTSMLTimeout      0x4
#define global SRTExtendableParse 0x8
#define global SRTReSent          0x10