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

SpeechPartOfSpeech

列挙型
基底型i4

メンバー 9

名前10進16進
SPSNotOverriden-10xFFFFFFFF
SPSUnknown00x0
SPSNoun40960x1000
SPSVerb81920x2000
SPSModifier122880x3000
SPSFunction163840x4000
SPSInterjection204800x5000
SPSLMA286720x7000
SPSSuppressWord614400xF000

各言語での定義

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

typedef enum SpeechPartOfSpeech : int {
    SPSNotOverriden = -1,
    SPSUnknown = 0,
    SPSNoun = 4096,
    SPSVerb = 8192,
    SPSModifier = 12288,
    SPSFunction = 16384,
    SPSInterjection = 20480,
    SPSLMA = 28672,
    SPSSuppressWord = 61440
} SpeechPartOfSpeech;
public enum SpeechPartOfSpeech : int
{
    SPSNotOverriden = -1,
    SPSUnknown = 0,
    SPSNoun = 4096,
    SPSVerb = 8192,
    SPSModifier = 12288,
    SPSFunction = 16384,
    SPSInterjection = 20480,
    SPSLMA = 28672,
    SPSSuppressWord = 61440,
}
Public Enum SpeechPartOfSpeech As Integer
    SPSNotOverriden = -1
    SPSUnknown = 0
    SPSNoun = 4096
    SPSVerb = 8192
    SPSModifier = 12288
    SPSFunction = 16384
    SPSInterjection = 20480
    SPSLMA = 28672
    SPSSuppressWord = 61440
End Enum
import enum

class SpeechPartOfSpeech(enum.IntEnum):
    SPSNotOverriden = -1
    SPSUnknown = 0
    SPSNoun = 4096
    SPSVerb = 8192
    SPSModifier = 12288
    SPSFunction = 16384
    SPSInterjection = 20480
    SPSLMA = 28672
    SPSSuppressWord = 61440
// SpeechPartOfSpeech
pub const SPSNotOverriden: i32 = -1;
pub const SPSUnknown: i32 = 0;
pub const SPSNoun: i32 = 4096;
pub const SPSVerb: i32 = 8192;
pub const SPSModifier: i32 = 12288;
pub const SPSFunction: i32 = 16384;
pub const SPSInterjection: i32 = 20480;
pub const SPSLMA: i32 = 28672;
pub const SPSSuppressWord: i32 = 61440;
// SpeechPartOfSpeech
const (
	SPSNotOverriden int32 = -1
	SPSUnknown int32 = 0
	SPSNoun int32 = 4096
	SPSVerb int32 = 8192
	SPSModifier int32 = 12288
	SPSFunction int32 = 16384
	SPSInterjection int32 = 20480
	SPSLMA int32 = 28672
	SPSSuppressWord int32 = 61440
)
const
  SPSNotOverriden = -1;
  SPSUnknown = 0;
  SPSNoun = 4096;
  SPSVerb = 8192;
  SPSModifier = 12288;
  SPSFunction = 16384;
  SPSInterjection = 20480;
  SPSLMA = 28672;
  SPSSuppressWord = 61440;
// SpeechPartOfSpeech
pub const SPSNotOverriden: i32 = -1;
pub const SPSUnknown: i32 = 0;
pub const SPSNoun: i32 = 4096;
pub const SPSVerb: i32 = 8192;
pub const SPSModifier: i32 = 12288;
pub const SPSFunction: i32 = 16384;
pub const SPSInterjection: i32 = 20480;
pub const SPSLMA: i32 = 28672;
pub const SPSSuppressWord: i32 = 61440;
const
  SPSNotOverriden* = -1
  SPSUnknown* = 0
  SPSNoun* = 4096
  SPSVerb* = 8192
  SPSModifier* = 12288
  SPSFunction* = 16384
  SPSInterjection* = 20480
  SPSLMA* = 28672
  SPSSuppressWord* = 61440
enum SpeechPartOfSpeech : int {
    SPSNotOverriden = -1,
    SPSUnknown = 0,
    SPSNoun = 4096,
    SPSVerb = 8192,
    SPSModifier = 12288,
    SPSFunction = 16384,
    SPSInterjection = 20480,
    SPSLMA = 28672,
    SPSSuppressWord = 61440,
}
#define global SPSNotOverriden 0xFFFFFFFF
#define global SPSUnknown      0x0
#define global SPSNoun         0x1000
#define global SPSVerb         0x2000
#define global SPSModifier     0x3000
#define global SPSFunction     0x4000
#define global SPSInterjection 0x5000
#define global SPSLMA          0x7000
#define global SPSSuppressWord 0xF000