Win32 API 日本語リファレンス
ホームSystem.UpdateAgent › InstallationImpact

InstallationImpact

列挙型
基底型i4

メンバー 3

名前10進16進
iiNormal00x0
iiMinor10x1
iiRequiresExclusiveHandling20x2

各言語での定義

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