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

SERVICE_ERROR_TYPE

列挙型
基底型i4

メンバー 4

名前10進16進
IgnoreError00x0
NormalError10x1
SevereError20x2
CriticalError30x3

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 3
enum 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