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