ホーム › Networking.WinInet › FORTCMD
FORTCMD
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| FORTCMD_LOGON | 1 | 0x1 |
| FORTCMD_LOGOFF | 2 | 0x2 |
| FORTCMD_CHG_PERSONALITY | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FORTCMD : int {
FORTCMD_LOGON = 1,
FORTCMD_LOGOFF = 2,
FORTCMD_CHG_PERSONALITY = 3
} FORTCMD;public enum FORTCMD : int
{
FORTCMD_LOGON = 1,
FORTCMD_LOGOFF = 2,
FORTCMD_CHG_PERSONALITY = 3,
}Public Enum FORTCMD As Integer
FORTCMD_LOGON = 1
FORTCMD_LOGOFF = 2
FORTCMD_CHG_PERSONALITY = 3
End Enumimport enum
class FORTCMD(enum.IntEnum):
FORTCMD_LOGON = 1
FORTCMD_LOGOFF = 2
FORTCMD_CHG_PERSONALITY = 3// FORTCMD
pub const FORTCMD_LOGON: i32 = 1;
pub const FORTCMD_LOGOFF: i32 = 2;
pub const FORTCMD_CHG_PERSONALITY: i32 = 3;// FORTCMD
const (
FORTCMD_LOGON int32 = 1
FORTCMD_LOGOFF int32 = 2
FORTCMD_CHG_PERSONALITY int32 = 3
)const
FORTCMD_LOGON = 1;
FORTCMD_LOGOFF = 2;
FORTCMD_CHG_PERSONALITY = 3;// FORTCMD
pub const FORTCMD_LOGON: i32 = 1;
pub const FORTCMD_LOGOFF: i32 = 2;
pub const FORTCMD_CHG_PERSONALITY: i32 = 3;const
FORTCMD_LOGON* = 1
FORTCMD_LOGOFF* = 2
FORTCMD_CHG_PERSONALITY* = 3enum FORTCMD : int {
FORTCMD_LOGON = 1,
FORTCMD_LOGOFF = 2,
FORTCMD_CHG_PERSONALITY = 3,
}#define global FORTCMD_LOGON 0x1
#define global FORTCMD_LOGOFF 0x2
#define global FORTCMD_CHG_PERSONALITY 0x3