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

HTTP_SCHEME

列挙型
基底型i4

メンバー 3

名前10進16進
HttpSchemeHttp00x0
HttpSchemeHttps10x1
HttpSchemeMaximum20x2

各言語での定義

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

typedef enum HTTP_SCHEME : int {
    HttpSchemeHttp = 0,
    HttpSchemeHttps = 1,
    HttpSchemeMaximum = 2
} HTTP_SCHEME;
public enum HTTP_SCHEME : int
{
    HttpSchemeHttp = 0,
    HttpSchemeHttps = 1,
    HttpSchemeMaximum = 2,
}
Public Enum HTTP_SCHEME As Integer
    HttpSchemeHttp = 0
    HttpSchemeHttps = 1
    HttpSchemeMaximum = 2
End Enum
import enum

class HTTP_SCHEME(enum.IntEnum):
    HttpSchemeHttp = 0
    HttpSchemeHttps = 1
    HttpSchemeMaximum = 2
// HTTP_SCHEME
pub const HttpSchemeHttp: i32 = 0;
pub const HttpSchemeHttps: i32 = 1;
pub const HttpSchemeMaximum: i32 = 2;
// HTTP_SCHEME
const (
	HttpSchemeHttp int32 = 0
	HttpSchemeHttps int32 = 1
	HttpSchemeMaximum int32 = 2
)
const
  HttpSchemeHttp = 0;
  HttpSchemeHttps = 1;
  HttpSchemeMaximum = 2;
// HTTP_SCHEME
pub const HttpSchemeHttp: i32 = 0;
pub const HttpSchemeHttps: i32 = 1;
pub const HttpSchemeMaximum: i32 = 2;
const
  HttpSchemeHttp* = 0
  HttpSchemeHttps* = 1
  HttpSchemeMaximum* = 2
enum HTTP_SCHEME : int {
    HttpSchemeHttp = 0,
    HttpSchemeHttps = 1,
    HttpSchemeMaximum = 2,
}
#define global HttpSchemeHttp    0x0
#define global HttpSchemeHttps   0x1
#define global HttpSchemeMaximum 0x2