ホーム › System.SystemServices › IMPORT_OBJECT_TYPE
IMPORT_OBJECT_TYPE
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| IMPORT_OBJECT_CODE | 0 | 0x0 |
| IMPORT_OBJECT_DATA | 1 | 0x1 |
| IMPORT_OBJECT_CONST | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum IMPORT_OBJECT_TYPE : int {
IMPORT_OBJECT_CODE = 0,
IMPORT_OBJECT_DATA = 1,
IMPORT_OBJECT_CONST = 2
} IMPORT_OBJECT_TYPE;public enum IMPORT_OBJECT_TYPE : int
{
IMPORT_OBJECT_CODE = 0,
IMPORT_OBJECT_DATA = 1,
IMPORT_OBJECT_CONST = 2,
}Public Enum IMPORT_OBJECT_TYPE As Integer
IMPORT_OBJECT_CODE = 0
IMPORT_OBJECT_DATA = 1
IMPORT_OBJECT_CONST = 2
End Enumimport enum
class IMPORT_OBJECT_TYPE(enum.IntEnum):
IMPORT_OBJECT_CODE = 0
IMPORT_OBJECT_DATA = 1
IMPORT_OBJECT_CONST = 2// IMPORT_OBJECT_TYPE
pub const IMPORT_OBJECT_CODE: i32 = 0;
pub const IMPORT_OBJECT_DATA: i32 = 1;
pub const IMPORT_OBJECT_CONST: i32 = 2;// IMPORT_OBJECT_TYPE
const (
IMPORT_OBJECT_CODE int32 = 0
IMPORT_OBJECT_DATA int32 = 1
IMPORT_OBJECT_CONST int32 = 2
)const
IMPORT_OBJECT_CODE = 0;
IMPORT_OBJECT_DATA = 1;
IMPORT_OBJECT_CONST = 2;// IMPORT_OBJECT_TYPE
pub const IMPORT_OBJECT_CODE: i32 = 0;
pub const IMPORT_OBJECT_DATA: i32 = 1;
pub const IMPORT_OBJECT_CONST: i32 = 2;const
IMPORT_OBJECT_CODE* = 0
IMPORT_OBJECT_DATA* = 1
IMPORT_OBJECT_CONST* = 2enum IMPORT_OBJECT_TYPE : int {
IMPORT_OBJECT_CODE = 0,
IMPORT_OBJECT_DATA = 1,
IMPORT_OBJECT_CONST = 2,
}#define global IMPORT_OBJECT_CODE 0x0
#define global IMPORT_OBJECT_DATA 0x1
#define global IMPORT_OBJECT_CONST 0x2