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