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

SpeechVoicePriority

列挙型
基底型i4

メンバー 3

名前10進16進
SVPNormal00x0
SVPAlert10x1
SVPOver20x2

各言語での定義

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

typedef enum SpeechVoicePriority : int {
    SVPNormal = 0,
    SVPAlert = 1,
    SVPOver = 2
} SpeechVoicePriority;
public enum SpeechVoicePriority : int
{
    SVPNormal = 0,
    SVPAlert = 1,
    SVPOver = 2,
}
Public Enum SpeechVoicePriority As Integer
    SVPNormal = 0
    SVPAlert = 1
    SVPOver = 2
End Enum
import enum

class SpeechVoicePriority(enum.IntEnum):
    SVPNormal = 0
    SVPAlert = 1
    SVPOver = 2
// SpeechVoicePriority
pub const SVPNormal: i32 = 0;
pub const SVPAlert: i32 = 1;
pub const SVPOver: i32 = 2;
// SpeechVoicePriority
const (
	SVPNormal int32 = 0
	SVPAlert int32 = 1
	SVPOver int32 = 2
)
const
  SVPNormal = 0;
  SVPAlert = 1;
  SVPOver = 2;
// SpeechVoicePriority
pub const SVPNormal: i32 = 0;
pub const SVPAlert: i32 = 1;
pub const SVPOver: i32 = 2;
const
  SVPNormal* = 0
  SVPAlert* = 1
  SVPOver* = 2
enum SpeechVoicePriority : int {
    SVPNormal = 0,
    SVPAlert = 1,
    SVPOver = 2,
}
#define global SVPNormal 0x0
#define global SVPAlert  0x1
#define global SVPOver   0x2