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

SpeechFormatType

列挙型
基底型i4

メンバー 2

名前10進16進
SFTInput00x0
SFTSREngine10x1

各言語での定義

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

typedef enum SpeechFormatType : int {
    SFTInput = 0,
    SFTSREngine = 1
} SpeechFormatType;
public enum SpeechFormatType : int
{
    SFTInput = 0,
    SFTSREngine = 1,
}
Public Enum SpeechFormatType As Integer
    SFTInput = 0
    SFTSREngine = 1
End Enum
import enum

class SpeechFormatType(enum.IntEnum):
    SFTInput = 0
    SFTSREngine = 1
// SpeechFormatType
pub const SFTInput: i32 = 0;
pub const SFTSREngine: i32 = 1;
// SpeechFormatType
const (
	SFTInput int32 = 0
	SFTSREngine int32 = 1
)
const
  SFTInput = 0;
  SFTSREngine = 1;
// SpeechFormatType
pub const SFTInput: i32 = 0;
pub const SFTSREngine: i32 = 1;
const
  SFTInput* = 0
  SFTSREngine* = 1
enum SpeechFormatType : int {
    SFTInput = 0,
    SFTSREngine = 1,
}
#define global SFTInput    0x0
#define global SFTSREngine 0x1