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

UCurrCurrencyType

列挙型
基底型i4

メンバー 5

名前10進16進
UCURR_ALL21474836470x7FFFFFFF
UCURR_COMMON10x1
UCURR_UNCOMMON20x2
UCURR_DEPRECATED40x4
UCURR_NON_DEPRECATED80x8

各言語での定義

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

typedef enum UCurrCurrencyType : int {
    UCURR_ALL = 2147483647,
    UCURR_COMMON = 1,
    UCURR_UNCOMMON = 2,
    UCURR_DEPRECATED = 4,
    UCURR_NON_DEPRECATED = 8
} UCurrCurrencyType;
public enum UCurrCurrencyType : int
{
    UCURR_ALL = 2147483647,
    UCURR_COMMON = 1,
    UCURR_UNCOMMON = 2,
    UCURR_DEPRECATED = 4,
    UCURR_NON_DEPRECATED = 8,
}
Public Enum UCurrCurrencyType As Integer
    UCURR_ALL = 2147483647
    UCURR_COMMON = 1
    UCURR_UNCOMMON = 2
    UCURR_DEPRECATED = 4
    UCURR_NON_DEPRECATED = 8
End Enum
import enum

class UCurrCurrencyType(enum.IntEnum):
    UCURR_ALL = 2147483647
    UCURR_COMMON = 1
    UCURR_UNCOMMON = 2
    UCURR_DEPRECATED = 4
    UCURR_NON_DEPRECATED = 8
// UCurrCurrencyType
pub const UCURR_ALL: i32 = 2147483647;
pub const UCURR_COMMON: i32 = 1;
pub const UCURR_UNCOMMON: i32 = 2;
pub const UCURR_DEPRECATED: i32 = 4;
pub const UCURR_NON_DEPRECATED: i32 = 8;
// UCurrCurrencyType
const (
	UCURR_ALL int32 = 2147483647
	UCURR_COMMON int32 = 1
	UCURR_UNCOMMON int32 = 2
	UCURR_DEPRECATED int32 = 4
	UCURR_NON_DEPRECATED int32 = 8
)
const
  UCURR_ALL = 2147483647;
  UCURR_COMMON = 1;
  UCURR_UNCOMMON = 2;
  UCURR_DEPRECATED = 4;
  UCURR_NON_DEPRECATED = 8;
// UCurrCurrencyType
pub const UCURR_ALL: i32 = 2147483647;
pub const UCURR_COMMON: i32 = 1;
pub const UCURR_UNCOMMON: i32 = 2;
pub const UCURR_DEPRECATED: i32 = 4;
pub const UCURR_NON_DEPRECATED: i32 = 8;
const
  UCURR_ALL* = 2147483647
  UCURR_COMMON* = 1
  UCURR_UNCOMMON* = 2
  UCURR_DEPRECATED* = 4
  UCURR_NON_DEPRECATED* = 8
enum UCurrCurrencyType : int {
    UCURR_ALL = 2147483647,
    UCURR_COMMON = 1,
    UCURR_UNCOMMON = 2,
    UCURR_DEPRECATED = 4,
    UCURR_NON_DEPRECATED = 8,
}
#define global UCURR_ALL            0x7FFFFFFF
#define global UCURR_COMMON         0x1
#define global UCURR_UNCOMMON       0x2
#define global UCURR_DEPRECATED     0x4
#define global UCURR_NON_DEPRECATED 0x8