Win32 API 日本語リファレンス
ホームNetworking.HttpServer › HTTP_PROTECTION_LEVEL_TYPE

HTTP_PROTECTION_LEVEL_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
HttpProtectionLevelUnrestricted00x0
HttpProtectionLevelEdgeRestricted10x1
HttpProtectionLevelRestricted20x2

各言語での定義

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

typedef enum HTTP_PROTECTION_LEVEL_TYPE : int {
    HttpProtectionLevelUnrestricted = 0,
    HttpProtectionLevelEdgeRestricted = 1,
    HttpProtectionLevelRestricted = 2
} HTTP_PROTECTION_LEVEL_TYPE;
public enum HTTP_PROTECTION_LEVEL_TYPE : int
{
    HttpProtectionLevelUnrestricted = 0,
    HttpProtectionLevelEdgeRestricted = 1,
    HttpProtectionLevelRestricted = 2,
}
Public Enum HTTP_PROTECTION_LEVEL_TYPE As Integer
    HttpProtectionLevelUnrestricted = 0
    HttpProtectionLevelEdgeRestricted = 1
    HttpProtectionLevelRestricted = 2
End Enum
import enum

class HTTP_PROTECTION_LEVEL_TYPE(enum.IntEnum):
    HttpProtectionLevelUnrestricted = 0
    HttpProtectionLevelEdgeRestricted = 1
    HttpProtectionLevelRestricted = 2
// HTTP_PROTECTION_LEVEL_TYPE
pub const HttpProtectionLevelUnrestricted: i32 = 0;
pub const HttpProtectionLevelEdgeRestricted: i32 = 1;
pub const HttpProtectionLevelRestricted: i32 = 2;
// HTTP_PROTECTION_LEVEL_TYPE
const (
	HttpProtectionLevelUnrestricted int32 = 0
	HttpProtectionLevelEdgeRestricted int32 = 1
	HttpProtectionLevelRestricted int32 = 2
)
const
  HttpProtectionLevelUnrestricted = 0;
  HttpProtectionLevelEdgeRestricted = 1;
  HttpProtectionLevelRestricted = 2;
// HTTP_PROTECTION_LEVEL_TYPE
pub const HttpProtectionLevelUnrestricted: i32 = 0;
pub const HttpProtectionLevelEdgeRestricted: i32 = 1;
pub const HttpProtectionLevelRestricted: i32 = 2;
const
  HttpProtectionLevelUnrestricted* = 0
  HttpProtectionLevelEdgeRestricted* = 1
  HttpProtectionLevelRestricted* = 2
enum HTTP_PROTECTION_LEVEL_TYPE : int {
    HttpProtectionLevelUnrestricted = 0,
    HttpProtectionLevelEdgeRestricted = 1,
    HttpProtectionLevelRestricted = 2,
}
#define global HttpProtectionLevelUnrestricted   0x0
#define global HttpProtectionLevelEdgeRestricted 0x1
#define global HttpProtectionLevelRestricted     0x2