ホーム › Foundation › NTSTATUS_SEVERITY_CODE
NTSTATUS_SEVERITY_CODE
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| STATUS_SEVERITY_SUCCESS | 0 | 0x0 |
| STATUS_SEVERITY_INFORMATIONAL | 1 | 0x1 |
| STATUS_SEVERITY_WARNING | 2 | 0x2 |
| STATUS_SEVERITY_ERROR | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum NTSTATUS_SEVERITY_CODE : unsigned int {
STATUS_SEVERITY_SUCCESS = 0,
STATUS_SEVERITY_INFORMATIONAL = 1,
STATUS_SEVERITY_WARNING = 2,
STATUS_SEVERITY_ERROR = 3
} NTSTATUS_SEVERITY_CODE;public enum NTSTATUS_SEVERITY_CODE : uint
{
STATUS_SEVERITY_SUCCESS = 0,
STATUS_SEVERITY_INFORMATIONAL = 1,
STATUS_SEVERITY_WARNING = 2,
STATUS_SEVERITY_ERROR = 3,
}Public Enum NTSTATUS_SEVERITY_CODE As UInteger
STATUS_SEVERITY_SUCCESS = 0
STATUS_SEVERITY_INFORMATIONAL = 1
STATUS_SEVERITY_WARNING = 2
STATUS_SEVERITY_ERROR = 3
End Enumimport enum
class NTSTATUS_SEVERITY_CODE(enum.IntEnum):
STATUS_SEVERITY_SUCCESS = 0
STATUS_SEVERITY_INFORMATIONAL = 1
STATUS_SEVERITY_WARNING = 2
STATUS_SEVERITY_ERROR = 3// NTSTATUS_SEVERITY_CODE
pub const STATUS_SEVERITY_SUCCESS: u32 = 0;
pub const STATUS_SEVERITY_INFORMATIONAL: u32 = 1;
pub const STATUS_SEVERITY_WARNING: u32 = 2;
pub const STATUS_SEVERITY_ERROR: u32 = 3;// NTSTATUS_SEVERITY_CODE
const (
STATUS_SEVERITY_SUCCESS uint32 = 0
STATUS_SEVERITY_INFORMATIONAL uint32 = 1
STATUS_SEVERITY_WARNING uint32 = 2
STATUS_SEVERITY_ERROR uint32 = 3
)const
STATUS_SEVERITY_SUCCESS = 0;
STATUS_SEVERITY_INFORMATIONAL = 1;
STATUS_SEVERITY_WARNING = 2;
STATUS_SEVERITY_ERROR = 3;// NTSTATUS_SEVERITY_CODE
pub const STATUS_SEVERITY_SUCCESS: u32 = 0;
pub const STATUS_SEVERITY_INFORMATIONAL: u32 = 1;
pub const STATUS_SEVERITY_WARNING: u32 = 2;
pub const STATUS_SEVERITY_ERROR: u32 = 3;const
STATUS_SEVERITY_SUCCESS* = 0
STATUS_SEVERITY_INFORMATIONAL* = 1
STATUS_SEVERITY_WARNING* = 2
STATUS_SEVERITY_ERROR* = 3enum NTSTATUS_SEVERITY_CODE : uint {
STATUS_SEVERITY_SUCCESS = 0,
STATUS_SEVERITY_INFORMATIONAL = 1,
STATUS_SEVERITY_WARNING = 2,
STATUS_SEVERITY_ERROR = 3,
}#define global STATUS_SEVERITY_SUCCESS 0x0
#define global STATUS_SEVERITY_INFORMATIONAL 0x1
#define global STATUS_SEVERITY_WARNING 0x2
#define global STATUS_SEVERITY_ERROR 0x3