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