Win32 API 日本語リファレンス
ホームSystem.Search › OSPXFER

OSPXFER

列挙型
基底型i4

メンバー 3

名前10進16進
OSPXFER_COMPLETE00x0
OSPXFER_ABORT10x1
OSPXFER_ERROR20x2

各言語での定義

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

typedef enum OSPXFER : int {
    OSPXFER_COMPLETE = 0,
    OSPXFER_ABORT = 1,
    OSPXFER_ERROR = 2
} OSPXFER;
public enum OSPXFER : int
{
    OSPXFER_COMPLETE = 0,
    OSPXFER_ABORT = 1,
    OSPXFER_ERROR = 2,
}
Public Enum OSPXFER As Integer
    OSPXFER_COMPLETE = 0
    OSPXFER_ABORT = 1
    OSPXFER_ERROR = 2
End Enum
import enum

class OSPXFER(enum.IntEnum):
    OSPXFER_COMPLETE = 0
    OSPXFER_ABORT = 1
    OSPXFER_ERROR = 2
// OSPXFER
pub const OSPXFER_COMPLETE: i32 = 0;
pub const OSPXFER_ABORT: i32 = 1;
pub const OSPXFER_ERROR: i32 = 2;
// OSPXFER
const (
	OSPXFER_COMPLETE int32 = 0
	OSPXFER_ABORT int32 = 1
	OSPXFER_ERROR int32 = 2
)
const
  OSPXFER_COMPLETE = 0;
  OSPXFER_ABORT = 1;
  OSPXFER_ERROR = 2;
// OSPXFER
pub const OSPXFER_COMPLETE: i32 = 0;
pub const OSPXFER_ABORT: i32 = 1;
pub const OSPXFER_ERROR: i32 = 2;
const
  OSPXFER_COMPLETE* = 0
  OSPXFER_ABORT* = 1
  OSPXFER_ERROR* = 2
enum OSPXFER : int {
    OSPXFER_COMPLETE = 0,
    OSPXFER_ABORT = 1,
    OSPXFER_ERROR = 2,
}
#define global OSPXFER_COMPLETE 0x0
#define global OSPXFER_ABORT    0x1
#define global OSPXFER_ERROR    0x2