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

HTTP_SERVICE_CONFIG_SETTING_KEY

列挙型
基底型i4

メンバー 2

名前10進16進
HttpNone00x0
HttpTlsThrottle10x1

各言語での定義

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

typedef enum HTTP_SERVICE_CONFIG_SETTING_KEY : int {
    HttpNone = 0,
    HttpTlsThrottle = 1
} HTTP_SERVICE_CONFIG_SETTING_KEY;
public enum HTTP_SERVICE_CONFIG_SETTING_KEY : int
{
    HttpNone = 0,
    HttpTlsThrottle = 1,
}
Public Enum HTTP_SERVICE_CONFIG_SETTING_KEY As Integer
    HttpNone = 0
    HttpTlsThrottle = 1
End Enum
import enum

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