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

HTTP_QOS_SETTING_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
HttpQosSettingTypeBandwidth00x0
HttpQosSettingTypeConnectionLimit10x1
HttpQosSettingTypeFlowRate20x2

各言語での定義

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

typedef enum HTTP_QOS_SETTING_TYPE : int {
    HttpQosSettingTypeBandwidth = 0,
    HttpQosSettingTypeConnectionLimit = 1,
    HttpQosSettingTypeFlowRate = 2
} HTTP_QOS_SETTING_TYPE;
public enum HTTP_QOS_SETTING_TYPE : int
{
    HttpQosSettingTypeBandwidth = 0,
    HttpQosSettingTypeConnectionLimit = 1,
    HttpQosSettingTypeFlowRate = 2,
}
Public Enum HTTP_QOS_SETTING_TYPE As Integer
    HttpQosSettingTypeBandwidth = 0
    HttpQosSettingTypeConnectionLimit = 1
    HttpQosSettingTypeFlowRate = 2
End Enum
import enum

class HTTP_QOS_SETTING_TYPE(enum.IntEnum):
    HttpQosSettingTypeBandwidth = 0
    HttpQosSettingTypeConnectionLimit = 1
    HttpQosSettingTypeFlowRate = 2
// HTTP_QOS_SETTING_TYPE
pub const HttpQosSettingTypeBandwidth: i32 = 0;
pub const HttpQosSettingTypeConnectionLimit: i32 = 1;
pub const HttpQosSettingTypeFlowRate: i32 = 2;
// HTTP_QOS_SETTING_TYPE
const (
	HttpQosSettingTypeBandwidth int32 = 0
	HttpQosSettingTypeConnectionLimit int32 = 1
	HttpQosSettingTypeFlowRate int32 = 2
)
const
  HttpQosSettingTypeBandwidth = 0;
  HttpQosSettingTypeConnectionLimit = 1;
  HttpQosSettingTypeFlowRate = 2;
// HTTP_QOS_SETTING_TYPE
pub const HttpQosSettingTypeBandwidth: i32 = 0;
pub const HttpQosSettingTypeConnectionLimit: i32 = 1;
pub const HttpQosSettingTypeFlowRate: i32 = 2;
const
  HttpQosSettingTypeBandwidth* = 0
  HttpQosSettingTypeConnectionLimit* = 1
  HttpQosSettingTypeFlowRate* = 2
enum HTTP_QOS_SETTING_TYPE : int {
    HttpQosSettingTypeBandwidth = 0,
    HttpQosSettingTypeConnectionLimit = 1,
    HttpQosSettingTypeFlowRate = 2,
}
#define global HttpQosSettingTypeBandwidth       0x0
#define global HttpQosSettingTypeConnectionLimit 0x1
#define global HttpQosSettingTypeFlowRate        0x2