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