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