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

SpeechLoadOption

列挙型
基底型i4

メンバー 2

名前10進16進
SLOStatic00x0
SLODynamic10x1

各言語での定義

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

typedef enum SpeechLoadOption : int {
    SLOStatic = 0,
    SLODynamic = 1
} SpeechLoadOption;
public enum SpeechLoadOption : int
{
    SLOStatic = 0,
    SLODynamic = 1,
}
Public Enum SpeechLoadOption As Integer
    SLOStatic = 0
    SLODynamic = 1
End Enum
import enum

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