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

AutomaticUpdatesNotificationLevel

列挙型
基底型i4

メンバー 5

名前10進16進
aunlNotConfigured00x0
aunlDisabled10x1
aunlNotifyBeforeDownload20x2
aunlNotifyBeforeInstallation30x3
aunlScheduledInstallation40x4

各言語での定義

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

typedef enum AutomaticUpdatesNotificationLevel : int {
    aunlNotConfigured = 0,
    aunlDisabled = 1,
    aunlNotifyBeforeDownload = 2,
    aunlNotifyBeforeInstallation = 3,
    aunlScheduledInstallation = 4
} AutomaticUpdatesNotificationLevel;
public enum AutomaticUpdatesNotificationLevel : int
{
    aunlNotConfigured = 0,
    aunlDisabled = 1,
    aunlNotifyBeforeDownload = 2,
    aunlNotifyBeforeInstallation = 3,
    aunlScheduledInstallation = 4,
}
Public Enum AutomaticUpdatesNotificationLevel As Integer
    aunlNotConfigured = 0
    aunlDisabled = 1
    aunlNotifyBeforeDownload = 2
    aunlNotifyBeforeInstallation = 3
    aunlScheduledInstallation = 4
End Enum
import enum

class AutomaticUpdatesNotificationLevel(enum.IntEnum):
    aunlNotConfigured = 0
    aunlDisabled = 1
    aunlNotifyBeforeDownload = 2
    aunlNotifyBeforeInstallation = 3
    aunlScheduledInstallation = 4
// AutomaticUpdatesNotificationLevel
pub const aunlNotConfigured: i32 = 0;
pub const aunlDisabled: i32 = 1;
pub const aunlNotifyBeforeDownload: i32 = 2;
pub const aunlNotifyBeforeInstallation: i32 = 3;
pub const aunlScheduledInstallation: i32 = 4;
// AutomaticUpdatesNotificationLevel
const (
	aunlNotConfigured int32 = 0
	aunlDisabled int32 = 1
	aunlNotifyBeforeDownload int32 = 2
	aunlNotifyBeforeInstallation int32 = 3
	aunlScheduledInstallation int32 = 4
)
const
  aunlNotConfigured = 0;
  aunlDisabled = 1;
  aunlNotifyBeforeDownload = 2;
  aunlNotifyBeforeInstallation = 3;
  aunlScheduledInstallation = 4;
// AutomaticUpdatesNotificationLevel
pub const aunlNotConfigured: i32 = 0;
pub const aunlDisabled: i32 = 1;
pub const aunlNotifyBeforeDownload: i32 = 2;
pub const aunlNotifyBeforeInstallation: i32 = 3;
pub const aunlScheduledInstallation: i32 = 4;
const
  aunlNotConfigured* = 0
  aunlDisabled* = 1
  aunlNotifyBeforeDownload* = 2
  aunlNotifyBeforeInstallation* = 3
  aunlScheduledInstallation* = 4
enum AutomaticUpdatesNotificationLevel : int {
    aunlNotConfigured = 0,
    aunlDisabled = 1,
    aunlNotifyBeforeDownload = 2,
    aunlNotifyBeforeInstallation = 3,
    aunlScheduledInstallation = 4,
}
#define global aunlNotConfigured            0x0
#define global aunlDisabled                 0x1
#define global aunlNotifyBeforeDownload     0x2
#define global aunlNotifyBeforeInstallation 0x3
#define global aunlScheduledInstallation    0x4