Win32 API 日本語リファレンス
ホームGlobalization › CORRECTIVE_ACTION

CORRECTIVE_ACTION

列挙型
基底型i4

メンバー 4

名前10進16進
CORRECTIVE_ACTION_NONE00x0
CORRECTIVE_ACTION_GET_SUGGESTIONS10x1
CORRECTIVE_ACTION_REPLACE20x2
CORRECTIVE_ACTION_DELETE30x3

各言語での定義

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

typedef enum CORRECTIVE_ACTION : int {
    CORRECTIVE_ACTION_NONE = 0,
    CORRECTIVE_ACTION_GET_SUGGESTIONS = 1,
    CORRECTIVE_ACTION_REPLACE = 2,
    CORRECTIVE_ACTION_DELETE = 3
} CORRECTIVE_ACTION;
public enum CORRECTIVE_ACTION : int
{
    CORRECTIVE_ACTION_NONE = 0,
    CORRECTIVE_ACTION_GET_SUGGESTIONS = 1,
    CORRECTIVE_ACTION_REPLACE = 2,
    CORRECTIVE_ACTION_DELETE = 3,
}
Public Enum CORRECTIVE_ACTION As Integer
    CORRECTIVE_ACTION_NONE = 0
    CORRECTIVE_ACTION_GET_SUGGESTIONS = 1
    CORRECTIVE_ACTION_REPLACE = 2
    CORRECTIVE_ACTION_DELETE = 3
End Enum
import enum

class CORRECTIVE_ACTION(enum.IntEnum):
    CORRECTIVE_ACTION_NONE = 0
    CORRECTIVE_ACTION_GET_SUGGESTIONS = 1
    CORRECTIVE_ACTION_REPLACE = 2
    CORRECTIVE_ACTION_DELETE = 3
// CORRECTIVE_ACTION
pub const CORRECTIVE_ACTION_NONE: i32 = 0;
pub const CORRECTIVE_ACTION_GET_SUGGESTIONS: i32 = 1;
pub const CORRECTIVE_ACTION_REPLACE: i32 = 2;
pub const CORRECTIVE_ACTION_DELETE: i32 = 3;
// CORRECTIVE_ACTION
const (
	CORRECTIVE_ACTION_NONE int32 = 0
	CORRECTIVE_ACTION_GET_SUGGESTIONS int32 = 1
	CORRECTIVE_ACTION_REPLACE int32 = 2
	CORRECTIVE_ACTION_DELETE int32 = 3
)
const
  CORRECTIVE_ACTION_NONE = 0;
  CORRECTIVE_ACTION_GET_SUGGESTIONS = 1;
  CORRECTIVE_ACTION_REPLACE = 2;
  CORRECTIVE_ACTION_DELETE = 3;
// CORRECTIVE_ACTION
pub const CORRECTIVE_ACTION_NONE: i32 = 0;
pub const CORRECTIVE_ACTION_GET_SUGGESTIONS: i32 = 1;
pub const CORRECTIVE_ACTION_REPLACE: i32 = 2;
pub const CORRECTIVE_ACTION_DELETE: i32 = 3;
const
  CORRECTIVE_ACTION_NONE* = 0
  CORRECTIVE_ACTION_GET_SUGGESTIONS* = 1
  CORRECTIVE_ACTION_REPLACE* = 2
  CORRECTIVE_ACTION_DELETE* = 3
enum CORRECTIVE_ACTION : int {
    CORRECTIVE_ACTION_NONE = 0,
    CORRECTIVE_ACTION_GET_SUGGESTIONS = 1,
    CORRECTIVE_ACTION_REPLACE = 2,
    CORRECTIVE_ACTION_DELETE = 3,
}
#define global CORRECTIVE_ACTION_NONE            0x0
#define global CORRECTIVE_ACTION_GET_SUGGESTIONS 0x1
#define global CORRECTIVE_ACTION_REPLACE         0x2
#define global CORRECTIVE_ACTION_DELETE          0x3