Win32 API 日本語リファレンス
ホームUI.Controls › SYSTEMCLOSESTATES

SYSTEMCLOSESTATES

列挙型
基底型i4

メンバー 2

名前10進16進
MSYSC_NORMAL10x1
MSYSC_DISABLED20x2

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2
enum SYSTEMCLOSESTATES : int {
    MSYSC_NORMAL = 1,
    MSYSC_DISABLED = 2,
}
#define global MSYSC_NORMAL   0x1
#define global MSYSC_DISABLED 0x2