ホーム › System.SystemServices › SERVICE_ERROR_TYPE
SERVICE_ERROR_TYPE
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| IgnoreError | 0 | 0x0 |
| NormalError | 1 | 0x1 |
| SevereError | 2 | 0x2 |
| CriticalError | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum SERVICE_ERROR_TYPE : int {
IgnoreError = 0,
NormalError = 1,
SevereError = 2,
CriticalError = 3
} SERVICE_ERROR_TYPE;public enum SERVICE_ERROR_TYPE : int
{
IgnoreError = 0,
NormalError = 1,
SevereError = 2,
CriticalError = 3,
}Public Enum SERVICE_ERROR_TYPE As Integer
IgnoreError = 0
NormalError = 1
SevereError = 2
CriticalError = 3
End Enumimport enum
class SERVICE_ERROR_TYPE(enum.IntEnum):
IgnoreError = 0
NormalError = 1
SevereError = 2
CriticalError = 3// SERVICE_ERROR_TYPE
pub const IgnoreError: i32 = 0;
pub const NormalError: i32 = 1;
pub const SevereError: i32 = 2;
pub const CriticalError: i32 = 3;// SERVICE_ERROR_TYPE
const (
IgnoreError int32 = 0
NormalError int32 = 1
SevereError int32 = 2
CriticalError int32 = 3
)const
IgnoreError = 0;
NormalError = 1;
SevereError = 2;
CriticalError = 3;// SERVICE_ERROR_TYPE
pub const IgnoreError: i32 = 0;
pub const NormalError: i32 = 1;
pub const SevereError: i32 = 2;
pub const CriticalError: i32 = 3;const
IgnoreError* = 0
NormalError* = 1
SevereError* = 2
CriticalError* = 3enum SERVICE_ERROR_TYPE : int {
IgnoreError = 0,
NormalError = 1,
SevereError = 2,
CriticalError = 3,
}#define global IgnoreError 0x0
#define global NormalError 0x1
#define global SevereError 0x2
#define global CriticalError 0x3