Win32 API 日本語リファレンス
ホームSystem.Diagnostics.Debug › WHEA_ERROR_SOURCE_STATE

WHEA_ERROR_SOURCE_STATE

列挙型
基底型i4

メンバー 4

名前10進16進
WheaErrSrcStateStopped10x1
WheaErrSrcStateStarted20x2
WheaErrSrcStateRemoved30x3
WheaErrSrcStateRemovePending40x4

各言語での定義

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

typedef enum WHEA_ERROR_SOURCE_STATE : int {
    WheaErrSrcStateStopped = 1,
    WheaErrSrcStateStarted = 2,
    WheaErrSrcStateRemoved = 3,
    WheaErrSrcStateRemovePending = 4
} WHEA_ERROR_SOURCE_STATE;
public enum WHEA_ERROR_SOURCE_STATE : int
{
    WheaErrSrcStateStopped = 1,
    WheaErrSrcStateStarted = 2,
    WheaErrSrcStateRemoved = 3,
    WheaErrSrcStateRemovePending = 4,
}
Public Enum WHEA_ERROR_SOURCE_STATE As Integer
    WheaErrSrcStateStopped = 1
    WheaErrSrcStateStarted = 2
    WheaErrSrcStateRemoved = 3
    WheaErrSrcStateRemovePending = 4
End Enum
import enum

class WHEA_ERROR_SOURCE_STATE(enum.IntEnum):
    WheaErrSrcStateStopped = 1
    WheaErrSrcStateStarted = 2
    WheaErrSrcStateRemoved = 3
    WheaErrSrcStateRemovePending = 4
// WHEA_ERROR_SOURCE_STATE
pub const WheaErrSrcStateStopped: i32 = 1;
pub const WheaErrSrcStateStarted: i32 = 2;
pub const WheaErrSrcStateRemoved: i32 = 3;
pub const WheaErrSrcStateRemovePending: i32 = 4;
// WHEA_ERROR_SOURCE_STATE
const (
	WheaErrSrcStateStopped int32 = 1
	WheaErrSrcStateStarted int32 = 2
	WheaErrSrcStateRemoved int32 = 3
	WheaErrSrcStateRemovePending int32 = 4
)
const
  WheaErrSrcStateStopped = 1;
  WheaErrSrcStateStarted = 2;
  WheaErrSrcStateRemoved = 3;
  WheaErrSrcStateRemovePending = 4;
// WHEA_ERROR_SOURCE_STATE
pub const WheaErrSrcStateStopped: i32 = 1;
pub const WheaErrSrcStateStarted: i32 = 2;
pub const WheaErrSrcStateRemoved: i32 = 3;
pub const WheaErrSrcStateRemovePending: i32 = 4;
const
  WheaErrSrcStateStopped* = 1
  WheaErrSrcStateStarted* = 2
  WheaErrSrcStateRemoved* = 3
  WheaErrSrcStateRemovePending* = 4
enum WHEA_ERROR_SOURCE_STATE : int {
    WheaErrSrcStateStopped = 1,
    WheaErrSrcStateStarted = 2,
    WheaErrSrcStateRemoved = 3,
    WheaErrSrcStateRemovePending = 4,
}
#define global WheaErrSrcStateStopped       0x1
#define global WheaErrSrcStateStarted       0x2
#define global WheaErrSrcStateRemoved       0x3
#define global WheaErrSrcStateRemovePending 0x4