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

WER_CONSENT

列挙型
基底型i4

メンバー 5

名前10進16進
WerConsentNotAsked10x1
WerConsentApproved20x2
WerConsentDenied30x3
WerConsentAlwaysPrompt40x4
WerConsentMax50x5

各言語での定義

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

typedef enum WER_CONSENT : int {
    WerConsentNotAsked = 1,
    WerConsentApproved = 2,
    WerConsentDenied = 3,
    WerConsentAlwaysPrompt = 4,
    WerConsentMax = 5
} WER_CONSENT;
public enum WER_CONSENT : int
{
    WerConsentNotAsked = 1,
    WerConsentApproved = 2,
    WerConsentDenied = 3,
    WerConsentAlwaysPrompt = 4,
    WerConsentMax = 5,
}
Public Enum WER_CONSENT As Integer
    WerConsentNotAsked = 1
    WerConsentApproved = 2
    WerConsentDenied = 3
    WerConsentAlwaysPrompt = 4
    WerConsentMax = 5
End Enum
import enum

class WER_CONSENT(enum.IntEnum):
    WerConsentNotAsked = 1
    WerConsentApproved = 2
    WerConsentDenied = 3
    WerConsentAlwaysPrompt = 4
    WerConsentMax = 5
// WER_CONSENT
pub const WerConsentNotAsked: i32 = 1;
pub const WerConsentApproved: i32 = 2;
pub const WerConsentDenied: i32 = 3;
pub const WerConsentAlwaysPrompt: i32 = 4;
pub const WerConsentMax: i32 = 5;
// WER_CONSENT
const (
	WerConsentNotAsked int32 = 1
	WerConsentApproved int32 = 2
	WerConsentDenied int32 = 3
	WerConsentAlwaysPrompt int32 = 4
	WerConsentMax int32 = 5
)
const
  WerConsentNotAsked = 1;
  WerConsentApproved = 2;
  WerConsentDenied = 3;
  WerConsentAlwaysPrompt = 4;
  WerConsentMax = 5;
// WER_CONSENT
pub const WerConsentNotAsked: i32 = 1;
pub const WerConsentApproved: i32 = 2;
pub const WerConsentDenied: i32 = 3;
pub const WerConsentAlwaysPrompt: i32 = 4;
pub const WerConsentMax: i32 = 5;
const
  WerConsentNotAsked* = 1
  WerConsentApproved* = 2
  WerConsentDenied* = 3
  WerConsentAlwaysPrompt* = 4
  WerConsentMax* = 5
enum WER_CONSENT : int {
    WerConsentNotAsked = 1,
    WerConsentApproved = 2,
    WerConsentDenied = 3,
    WerConsentAlwaysPrompt = 4,
    WerConsentMax = 5,
}
#define global WerConsentNotAsked     0x1
#define global WerConsentApproved     0x2
#define global WerConsentDenied       0x3
#define global WerConsentAlwaysPrompt 0x4
#define global WerConsentMax          0x5