ホーム › System.ErrorReporting › WER_CONSENT
WER_CONSENT
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| WerConsentNotAsked | 1 | 0x1 |
| WerConsentApproved | 2 | 0x2 |
| WerConsentDenied | 3 | 0x3 |
| WerConsentAlwaysPrompt | 4 | 0x4 |
| WerConsentMax | 5 | 0x5 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 5enum 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