Win32 API 日本語リファレンス
ホームDevices.Tapi › QOS_EVENT

QOS_EVENT

列挙型
基底型i4

メンバー 5

名前10進16進
QE_NOQOS10x1
QE_ADMISSIONFAILURE20x2
QE_POLICYFAILURE30x3
QE_GENERICERROR40x4
QE_LASTITEM40x4

各言語での定義

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

typedef enum QOS_EVENT : int {
    QE_NOQOS = 1,
    QE_ADMISSIONFAILURE = 2,
    QE_POLICYFAILURE = 3,
    QE_GENERICERROR = 4,
    QE_LASTITEM = 4
} QOS_EVENT;
public enum QOS_EVENT : int
{
    QE_NOQOS = 1,
    QE_ADMISSIONFAILURE = 2,
    QE_POLICYFAILURE = 3,
    QE_GENERICERROR = 4,
    QE_LASTITEM = 4,
}
Public Enum QOS_EVENT As Integer
    QE_NOQOS = 1
    QE_ADMISSIONFAILURE = 2
    QE_POLICYFAILURE = 3
    QE_GENERICERROR = 4
    QE_LASTITEM = 4
End Enum
import enum

class QOS_EVENT(enum.IntEnum):
    QE_NOQOS = 1
    QE_ADMISSIONFAILURE = 2
    QE_POLICYFAILURE = 3
    QE_GENERICERROR = 4
    QE_LASTITEM = 4
// QOS_EVENT
pub const QE_NOQOS: i32 = 1;
pub const QE_ADMISSIONFAILURE: i32 = 2;
pub const QE_POLICYFAILURE: i32 = 3;
pub const QE_GENERICERROR: i32 = 4;
pub const QE_LASTITEM: i32 = 4;
// QOS_EVENT
const (
	QE_NOQOS int32 = 1
	QE_ADMISSIONFAILURE int32 = 2
	QE_POLICYFAILURE int32 = 3
	QE_GENERICERROR int32 = 4
	QE_LASTITEM int32 = 4
)
const
  QE_NOQOS = 1;
  QE_ADMISSIONFAILURE = 2;
  QE_POLICYFAILURE = 3;
  QE_GENERICERROR = 4;
  QE_LASTITEM = 4;
// QOS_EVENT
pub const QE_NOQOS: i32 = 1;
pub const QE_ADMISSIONFAILURE: i32 = 2;
pub const QE_POLICYFAILURE: i32 = 3;
pub const QE_GENERICERROR: i32 = 4;
pub const QE_LASTITEM: i32 = 4;
const
  QE_NOQOS* = 1
  QE_ADMISSIONFAILURE* = 2
  QE_POLICYFAILURE* = 3
  QE_GENERICERROR* = 4
  QE_LASTITEM* = 4
enum QOS_EVENT : int {
    QE_NOQOS = 1,
    QE_ADMISSIONFAILURE = 2,
    QE_POLICYFAILURE = 3,
    QE_GENERICERROR = 4,
    QE_LASTITEM = 4,
}
#define global QE_NOQOS            0x1
#define global QE_ADMISSIONFAILURE 0x2
#define global QE_POLICYFAILURE    0x3
#define global QE_GENERICERROR     0x4
#define global QE_LASTITEM         0x4