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

URegionType

列挙型
基底型i4

メンバー 7

名前10進16進
URGN_UNKNOWN00x0
URGN_TERRITORY10x1
URGN_WORLD20x2
URGN_CONTINENT30x3
URGN_SUBCONTINENT40x4
URGN_GROUPING50x5
URGN_DEPRECATED60x6

各言語での定義

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

typedef enum URegionType : int {
    URGN_UNKNOWN = 0,
    URGN_TERRITORY = 1,
    URGN_WORLD = 2,
    URGN_CONTINENT = 3,
    URGN_SUBCONTINENT = 4,
    URGN_GROUPING = 5,
    URGN_DEPRECATED = 6
} URegionType;
public enum URegionType : int
{
    URGN_UNKNOWN = 0,
    URGN_TERRITORY = 1,
    URGN_WORLD = 2,
    URGN_CONTINENT = 3,
    URGN_SUBCONTINENT = 4,
    URGN_GROUPING = 5,
    URGN_DEPRECATED = 6,
}
Public Enum URegionType As Integer
    URGN_UNKNOWN = 0
    URGN_TERRITORY = 1
    URGN_WORLD = 2
    URGN_CONTINENT = 3
    URGN_SUBCONTINENT = 4
    URGN_GROUPING = 5
    URGN_DEPRECATED = 6
End Enum
import enum

class URegionType(enum.IntEnum):
    URGN_UNKNOWN = 0
    URGN_TERRITORY = 1
    URGN_WORLD = 2
    URGN_CONTINENT = 3
    URGN_SUBCONTINENT = 4
    URGN_GROUPING = 5
    URGN_DEPRECATED = 6
// URegionType
pub const URGN_UNKNOWN: i32 = 0;
pub const URGN_TERRITORY: i32 = 1;
pub const URGN_WORLD: i32 = 2;
pub const URGN_CONTINENT: i32 = 3;
pub const URGN_SUBCONTINENT: i32 = 4;
pub const URGN_GROUPING: i32 = 5;
pub const URGN_DEPRECATED: i32 = 6;
// URegionType
const (
	URGN_UNKNOWN int32 = 0
	URGN_TERRITORY int32 = 1
	URGN_WORLD int32 = 2
	URGN_CONTINENT int32 = 3
	URGN_SUBCONTINENT int32 = 4
	URGN_GROUPING int32 = 5
	URGN_DEPRECATED int32 = 6
)
const
  URGN_UNKNOWN = 0;
  URGN_TERRITORY = 1;
  URGN_WORLD = 2;
  URGN_CONTINENT = 3;
  URGN_SUBCONTINENT = 4;
  URGN_GROUPING = 5;
  URGN_DEPRECATED = 6;
// URegionType
pub const URGN_UNKNOWN: i32 = 0;
pub const URGN_TERRITORY: i32 = 1;
pub const URGN_WORLD: i32 = 2;
pub const URGN_CONTINENT: i32 = 3;
pub const URGN_SUBCONTINENT: i32 = 4;
pub const URGN_GROUPING: i32 = 5;
pub const URGN_DEPRECATED: i32 = 6;
const
  URGN_UNKNOWN* = 0
  URGN_TERRITORY* = 1
  URGN_WORLD* = 2
  URGN_CONTINENT* = 3
  URGN_SUBCONTINENT* = 4
  URGN_GROUPING* = 5
  URGN_DEPRECATED* = 6
enum URegionType : int {
    URGN_UNKNOWN = 0,
    URGN_TERRITORY = 1,
    URGN_WORLD = 2,
    URGN_CONTINENT = 3,
    URGN_SUBCONTINENT = 4,
    URGN_GROUPING = 5,
    URGN_DEPRECATED = 6,
}
#define global URGN_UNKNOWN      0x0
#define global URGN_TERRITORY    0x1
#define global URGN_WORLD        0x2
#define global URGN_CONTINENT    0x3
#define global URGN_SUBCONTINENT 0x4
#define global URGN_GROUPING     0x5
#define global URGN_DEPRECATED   0x6