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

FORTCMD

列挙型
基底型i4

メンバー 3

名前10進16進
FORTCMD_LOGON10x1
FORTCMD_LOGOFF20x2
FORTCMD_CHG_PERSONALITY30x3

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 3
enum 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