ホーム › NetworkManagement.Rras › RAS_PORT_CONDITION
RAS_PORT_CONDITION
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| RAS_PORT_NON_OPERATIONAL | 0 | 0x0 |
| RAS_PORT_DISCONNECTED | 1 | 0x1 |
| RAS_PORT_CALLING_BACK | 2 | 0x2 |
| RAS_PORT_LISTENING | 3 | 0x3 |
| RAS_PORT_AUTHENTICATING | 4 | 0x4 |
| RAS_PORT_AUTHENTICATED | 5 | 0x5 |
| RAS_PORT_INITIALIZING | 6 | 0x6 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum RAS_PORT_CONDITION : int {
RAS_PORT_NON_OPERATIONAL = 0,
RAS_PORT_DISCONNECTED = 1,
RAS_PORT_CALLING_BACK = 2,
RAS_PORT_LISTENING = 3,
RAS_PORT_AUTHENTICATING = 4,
RAS_PORT_AUTHENTICATED = 5,
RAS_PORT_INITIALIZING = 6
} RAS_PORT_CONDITION;public enum RAS_PORT_CONDITION : int
{
RAS_PORT_NON_OPERATIONAL = 0,
RAS_PORT_DISCONNECTED = 1,
RAS_PORT_CALLING_BACK = 2,
RAS_PORT_LISTENING = 3,
RAS_PORT_AUTHENTICATING = 4,
RAS_PORT_AUTHENTICATED = 5,
RAS_PORT_INITIALIZING = 6,
}Public Enum RAS_PORT_CONDITION As Integer
RAS_PORT_NON_OPERATIONAL = 0
RAS_PORT_DISCONNECTED = 1
RAS_PORT_CALLING_BACK = 2
RAS_PORT_LISTENING = 3
RAS_PORT_AUTHENTICATING = 4
RAS_PORT_AUTHENTICATED = 5
RAS_PORT_INITIALIZING = 6
End Enumimport enum
class RAS_PORT_CONDITION(enum.IntEnum):
RAS_PORT_NON_OPERATIONAL = 0
RAS_PORT_DISCONNECTED = 1
RAS_PORT_CALLING_BACK = 2
RAS_PORT_LISTENING = 3
RAS_PORT_AUTHENTICATING = 4
RAS_PORT_AUTHENTICATED = 5
RAS_PORT_INITIALIZING = 6// RAS_PORT_CONDITION
pub const RAS_PORT_NON_OPERATIONAL: i32 = 0;
pub const RAS_PORT_DISCONNECTED: i32 = 1;
pub const RAS_PORT_CALLING_BACK: i32 = 2;
pub const RAS_PORT_LISTENING: i32 = 3;
pub const RAS_PORT_AUTHENTICATING: i32 = 4;
pub const RAS_PORT_AUTHENTICATED: i32 = 5;
pub const RAS_PORT_INITIALIZING: i32 = 6;// RAS_PORT_CONDITION
const (
RAS_PORT_NON_OPERATIONAL int32 = 0
RAS_PORT_DISCONNECTED int32 = 1
RAS_PORT_CALLING_BACK int32 = 2
RAS_PORT_LISTENING int32 = 3
RAS_PORT_AUTHENTICATING int32 = 4
RAS_PORT_AUTHENTICATED int32 = 5
RAS_PORT_INITIALIZING int32 = 6
)const
RAS_PORT_NON_OPERATIONAL = 0;
RAS_PORT_DISCONNECTED = 1;
RAS_PORT_CALLING_BACK = 2;
RAS_PORT_LISTENING = 3;
RAS_PORT_AUTHENTICATING = 4;
RAS_PORT_AUTHENTICATED = 5;
RAS_PORT_INITIALIZING = 6;// RAS_PORT_CONDITION
pub const RAS_PORT_NON_OPERATIONAL: i32 = 0;
pub const RAS_PORT_DISCONNECTED: i32 = 1;
pub const RAS_PORT_CALLING_BACK: i32 = 2;
pub const RAS_PORT_LISTENING: i32 = 3;
pub const RAS_PORT_AUTHENTICATING: i32 = 4;
pub const RAS_PORT_AUTHENTICATED: i32 = 5;
pub const RAS_PORT_INITIALIZING: i32 = 6;const
RAS_PORT_NON_OPERATIONAL* = 0
RAS_PORT_DISCONNECTED* = 1
RAS_PORT_CALLING_BACK* = 2
RAS_PORT_LISTENING* = 3
RAS_PORT_AUTHENTICATING* = 4
RAS_PORT_AUTHENTICATED* = 5
RAS_PORT_INITIALIZING* = 6enum RAS_PORT_CONDITION : int {
RAS_PORT_NON_OPERATIONAL = 0,
RAS_PORT_DISCONNECTED = 1,
RAS_PORT_CALLING_BACK = 2,
RAS_PORT_LISTENING = 3,
RAS_PORT_AUTHENTICATING = 4,
RAS_PORT_AUTHENTICATED = 5,
RAS_PORT_INITIALIZING = 6,
}#define global RAS_PORT_NON_OPERATIONAL 0x0
#define global RAS_PORT_DISCONNECTED 0x1
#define global RAS_PORT_CALLING_BACK 0x2
#define global RAS_PORT_LISTENING 0x3
#define global RAS_PORT_AUTHENTICATING 0x4
#define global RAS_PORT_AUTHENTICATED 0x5
#define global RAS_PORT_INITIALIZING 0x6