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

BANDSITECID

列挙型
基底型i4

メンバー 2

名前10進16進
BSID_BANDADDED00x0
BSID_BANDREMOVED10x1

各言語での定義

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

typedef enum BANDSITECID : int {
    BSID_BANDADDED = 0,
    BSID_BANDREMOVED = 1
} BANDSITECID;
public enum BANDSITECID : int
{
    BSID_BANDADDED = 0,
    BSID_BANDREMOVED = 1,
}
Public Enum BANDSITECID As Integer
    BSID_BANDADDED = 0
    BSID_BANDREMOVED = 1
End Enum
import enum

class BANDSITECID(enum.IntEnum):
    BSID_BANDADDED = 0
    BSID_BANDREMOVED = 1
// BANDSITECID
pub const BSID_BANDADDED: i32 = 0;
pub const BSID_BANDREMOVED: i32 = 1;
// BANDSITECID
const (
	BSID_BANDADDED int32 = 0
	BSID_BANDREMOVED int32 = 1
)
const
  BSID_BANDADDED = 0;
  BSID_BANDREMOVED = 1;
// BANDSITECID
pub const BSID_BANDADDED: i32 = 0;
pub const BSID_BANDREMOVED: i32 = 1;
const
  BSID_BANDADDED* = 0
  BSID_BANDREMOVED* = 1
enum BANDSITECID : int {
    BSID_BANDADDED = 0,
    BSID_BANDREMOVED = 1,
}
#define global BSID_BANDADDED   0x0
#define global BSID_BANDREMOVED 0x1