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