Win32 API 日本語リファレンス
ホームNetworkManagement.NetworkPolicyServer › RADIUS_EXTENSION_POINT

RADIUS_EXTENSION_POINT

列挙型
基底型i4

メンバー 2

名前10進16進
repAuthentication00x0
repAuthorization10x1

各言語での定義

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

typedef enum RADIUS_EXTENSION_POINT : int {
    repAuthentication = 0,
    repAuthorization = 1
} RADIUS_EXTENSION_POINT;
public enum RADIUS_EXTENSION_POINT : int
{
    repAuthentication = 0,
    repAuthorization = 1,
}
Public Enum RADIUS_EXTENSION_POINT As Integer
    repAuthentication = 0
    repAuthorization = 1
End Enum
import enum

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