ホーム › System.Search › OSPXFER
OSPXFER
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| OSPXFER_COMPLETE | 0 | 0x0 |
| OSPXFER_ABORT | 1 | 0x1 |
| OSPXFER_ERROR | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2enum 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