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

UpdateType

列挙型
基底型i4

メンバー 2

名前10進16進
utSoftware10x1
utDriver20x2

各言語での定義

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

typedef enum UpdateType : int {
    utSoftware = 1,
    utDriver = 2
} UpdateType;
public enum UpdateType : int
{
    utSoftware = 1,
    utDriver = 2,
}
Public Enum UpdateType As Integer
    utSoftware = 1
    utDriver = 2
End Enum
import enum

class UpdateType(enum.IntEnum):
    utSoftware = 1
    utDriver = 2
// UpdateType
pub const utSoftware: i32 = 1;
pub const utDriver: i32 = 2;
// UpdateType
const (
	utSoftware int32 = 1
	utDriver int32 = 2
)
const
  utSoftware = 1;
  utDriver = 2;
// UpdateType
pub const utSoftware: i32 = 1;
pub const utDriver: i32 = 2;
const
  utSoftware* = 1
  utDriver* = 2
enum UpdateType : int {
    utSoftware = 1,
    utDriver = 2,
}
#define global utSoftware 0x1
#define global utDriver   0x2