Win32 API 日本語リファレンス
ホームSecurity.Cryptography.Certificates › WebSecurityLevel

WebSecurityLevel

列挙型
基底型i4

メンバー 2

名前10進16進
LevelUnsafe00x0
LevelSafe10x1

各言語での定義

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

typedef enum WebSecurityLevel : int {
    LevelUnsafe = 0,
    LevelSafe = 1
} WebSecurityLevel;
public enum WebSecurityLevel : int
{
    LevelUnsafe = 0,
    LevelSafe = 1,
}
Public Enum WebSecurityLevel As Integer
    LevelUnsafe = 0
    LevelSafe = 1
End Enum
import enum

class WebSecurityLevel(enum.IntEnum):
    LevelUnsafe = 0
    LevelSafe = 1
// WebSecurityLevel
pub const LevelUnsafe: i32 = 0;
pub const LevelSafe: i32 = 1;
// WebSecurityLevel
const (
	LevelUnsafe int32 = 0
	LevelSafe int32 = 1
)
const
  LevelUnsafe = 0;
  LevelSafe = 1;
// WebSecurityLevel
pub const LevelUnsafe: i32 = 0;
pub const LevelSafe: i32 = 1;
const
  LevelUnsafe* = 0
  LevelSafe* = 1
enum WebSecurityLevel : int {
    LevelUnsafe = 0,
    LevelSafe = 1,
}
#define global LevelUnsafe 0x0
#define global LevelSafe   0x1