Win32 API 日本語リファレンス
ホームStorage.FileSystem › NtmsUITypes

NtmsUITypes

列挙型
基底型i4

メンバー 5

名前10進16進
NTMS_UITYPE_INVALID00x0
NTMS_UITYPE_INFO10x1
NTMS_UITYPE_REQ20x2
NTMS_UITYPE_ERR30x3
NTMS_UITYPE_MAX40x4

各言語での定義

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

typedef enum NtmsUITypes : int {
    NTMS_UITYPE_INVALID = 0,
    NTMS_UITYPE_INFO = 1,
    NTMS_UITYPE_REQ = 2,
    NTMS_UITYPE_ERR = 3,
    NTMS_UITYPE_MAX = 4
} NtmsUITypes;
public enum NtmsUITypes : int
{
    NTMS_UITYPE_INVALID = 0,
    NTMS_UITYPE_INFO = 1,
    NTMS_UITYPE_REQ = 2,
    NTMS_UITYPE_ERR = 3,
    NTMS_UITYPE_MAX = 4,
}
Public Enum NtmsUITypes As Integer
    NTMS_UITYPE_INVALID = 0
    NTMS_UITYPE_INFO = 1
    NTMS_UITYPE_REQ = 2
    NTMS_UITYPE_ERR = 3
    NTMS_UITYPE_MAX = 4
End Enum
import enum

class NtmsUITypes(enum.IntEnum):
    NTMS_UITYPE_INVALID = 0
    NTMS_UITYPE_INFO = 1
    NTMS_UITYPE_REQ = 2
    NTMS_UITYPE_ERR = 3
    NTMS_UITYPE_MAX = 4
// NtmsUITypes
pub const NTMS_UITYPE_INVALID: i32 = 0;
pub const NTMS_UITYPE_INFO: i32 = 1;
pub const NTMS_UITYPE_REQ: i32 = 2;
pub const NTMS_UITYPE_ERR: i32 = 3;
pub const NTMS_UITYPE_MAX: i32 = 4;
// NtmsUITypes
const (
	NTMS_UITYPE_INVALID int32 = 0
	NTMS_UITYPE_INFO int32 = 1
	NTMS_UITYPE_REQ int32 = 2
	NTMS_UITYPE_ERR int32 = 3
	NTMS_UITYPE_MAX int32 = 4
)
const
  NTMS_UITYPE_INVALID = 0;
  NTMS_UITYPE_INFO = 1;
  NTMS_UITYPE_REQ = 2;
  NTMS_UITYPE_ERR = 3;
  NTMS_UITYPE_MAX = 4;
// NtmsUITypes
pub const NTMS_UITYPE_INVALID: i32 = 0;
pub const NTMS_UITYPE_INFO: i32 = 1;
pub const NTMS_UITYPE_REQ: i32 = 2;
pub const NTMS_UITYPE_ERR: i32 = 3;
pub const NTMS_UITYPE_MAX: i32 = 4;
const
  NTMS_UITYPE_INVALID* = 0
  NTMS_UITYPE_INFO* = 1
  NTMS_UITYPE_REQ* = 2
  NTMS_UITYPE_ERR* = 3
  NTMS_UITYPE_MAX* = 4
enum NtmsUITypes : int {
    NTMS_UITYPE_INVALID = 0,
    NTMS_UITYPE_INFO = 1,
    NTMS_UITYPE_REQ = 2,
    NTMS_UITYPE_ERR = 3,
    NTMS_UITYPE_MAX = 4,
}
#define global NTMS_UITYPE_INVALID 0x0
#define global NTMS_UITYPE_INFO    0x1
#define global NTMS_UITYPE_REQ     0x2
#define global NTMS_UITYPE_ERR     0x3
#define global NTMS_UITYPE_MAX     0x4