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

SpeechVoiceEvents

列挙型
基底型i4

メンバー 11

名前10進16進
SVEStartInputStream20x2
SVEEndInputStream40x4
SVEVoiceChange80x8
SVEBookmark160x10
SVEWordBoundary320x20
SVEPhoneme640x40
SVESentenceBoundary1280x80
SVEViseme2560x100
SVEAudioLevel5120x200
SVEPrivate327680x8000
SVEAllEvents337900x83FE

各言語での定義

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

typedef enum SpeechVoiceEvents : int {
    SVEStartInputStream = 2,
    SVEEndInputStream = 4,
    SVEVoiceChange = 8,
    SVEBookmark = 16,
    SVEWordBoundary = 32,
    SVEPhoneme = 64,
    SVESentenceBoundary = 128,
    SVEViseme = 256,
    SVEAudioLevel = 512,
    SVEPrivate = 32768,
    SVEAllEvents = 33790
} SpeechVoiceEvents;
public enum SpeechVoiceEvents : int
{
    SVEStartInputStream = 2,
    SVEEndInputStream = 4,
    SVEVoiceChange = 8,
    SVEBookmark = 16,
    SVEWordBoundary = 32,
    SVEPhoneme = 64,
    SVESentenceBoundary = 128,
    SVEViseme = 256,
    SVEAudioLevel = 512,
    SVEPrivate = 32768,
    SVEAllEvents = 33790,
}
Public Enum SpeechVoiceEvents As Integer
    SVEStartInputStream = 2
    SVEEndInputStream = 4
    SVEVoiceChange = 8
    SVEBookmark = 16
    SVEWordBoundary = 32
    SVEPhoneme = 64
    SVESentenceBoundary = 128
    SVEViseme = 256
    SVEAudioLevel = 512
    SVEPrivate = 32768
    SVEAllEvents = 33790
End Enum
import enum

class SpeechVoiceEvents(enum.IntEnum):
    SVEStartInputStream = 2
    SVEEndInputStream = 4
    SVEVoiceChange = 8
    SVEBookmark = 16
    SVEWordBoundary = 32
    SVEPhoneme = 64
    SVESentenceBoundary = 128
    SVEViseme = 256
    SVEAudioLevel = 512
    SVEPrivate = 32768
    SVEAllEvents = 33790
// SpeechVoiceEvents
pub const SVEStartInputStream: i32 = 2;
pub const SVEEndInputStream: i32 = 4;
pub const SVEVoiceChange: i32 = 8;
pub const SVEBookmark: i32 = 16;
pub const SVEWordBoundary: i32 = 32;
pub const SVEPhoneme: i32 = 64;
pub const SVESentenceBoundary: i32 = 128;
pub const SVEViseme: i32 = 256;
pub const SVEAudioLevel: i32 = 512;
pub const SVEPrivate: i32 = 32768;
pub const SVEAllEvents: i32 = 33790;
// SpeechVoiceEvents
const (
	SVEStartInputStream int32 = 2
	SVEEndInputStream int32 = 4
	SVEVoiceChange int32 = 8
	SVEBookmark int32 = 16
	SVEWordBoundary int32 = 32
	SVEPhoneme int32 = 64
	SVESentenceBoundary int32 = 128
	SVEViseme int32 = 256
	SVEAudioLevel int32 = 512
	SVEPrivate int32 = 32768
	SVEAllEvents int32 = 33790
)
const
  SVEStartInputStream = 2;
  SVEEndInputStream = 4;
  SVEVoiceChange = 8;
  SVEBookmark = 16;
  SVEWordBoundary = 32;
  SVEPhoneme = 64;
  SVESentenceBoundary = 128;
  SVEViseme = 256;
  SVEAudioLevel = 512;
  SVEPrivate = 32768;
  SVEAllEvents = 33790;
// SpeechVoiceEvents
pub const SVEStartInputStream: i32 = 2;
pub const SVEEndInputStream: i32 = 4;
pub const SVEVoiceChange: i32 = 8;
pub const SVEBookmark: i32 = 16;
pub const SVEWordBoundary: i32 = 32;
pub const SVEPhoneme: i32 = 64;
pub const SVESentenceBoundary: i32 = 128;
pub const SVEViseme: i32 = 256;
pub const SVEAudioLevel: i32 = 512;
pub const SVEPrivate: i32 = 32768;
pub const SVEAllEvents: i32 = 33790;
const
  SVEStartInputStream* = 2
  SVEEndInputStream* = 4
  SVEVoiceChange* = 8
  SVEBookmark* = 16
  SVEWordBoundary* = 32
  SVEPhoneme* = 64
  SVESentenceBoundary* = 128
  SVEViseme* = 256
  SVEAudioLevel* = 512
  SVEPrivate* = 32768
  SVEAllEvents* = 33790
enum SpeechVoiceEvents : int {
    SVEStartInputStream = 2,
    SVEEndInputStream = 4,
    SVEVoiceChange = 8,
    SVEBookmark = 16,
    SVEWordBoundary = 32,
    SVEPhoneme = 64,
    SVESentenceBoundary = 128,
    SVEViseme = 256,
    SVEAudioLevel = 512,
    SVEPrivate = 32768,
    SVEAllEvents = 33790,
}
#define global SVEStartInputStream 0x2
#define global SVEEndInputStream   0x4
#define global SVEVoiceChange      0x8
#define global SVEBookmark         0x10
#define global SVEWordBoundary     0x20
#define global SVEPhoneme          0x40
#define global SVESentenceBoundary 0x80
#define global SVEViseme           0x100
#define global SVEAudioLevel       0x200
#define global SVEPrivate          0x8000
#define global SVEAllEvents        0x83FE