ホーム › Storage.Cabinets › FCIERROR
FCIERROR
列挙型メンバー 10
| 名前 | 10進 | 16進 |
|---|---|---|
| FCIERR_NONE | 0 | 0x0 |
| FCIERR_OPEN_SRC | 1 | 0x1 |
| FCIERR_READ_SRC | 2 | 0x2 |
| FCIERR_ALLOC_FAIL | 3 | 0x3 |
| FCIERR_TEMP_FILE | 4 | 0x4 |
| FCIERR_BAD_COMPR_TYPE | 5 | 0x5 |
| FCIERR_CAB_FILE | 6 | 0x6 |
| FCIERR_USER_ABORT | 7 | 0x7 |
| FCIERR_MCI_FAIL | 8 | 0x8 |
| FCIERR_CAB_FORMAT_LIMIT | 9 | 0x9 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FCIERROR : int {
FCIERR_NONE = 0,
FCIERR_OPEN_SRC = 1,
FCIERR_READ_SRC = 2,
FCIERR_ALLOC_FAIL = 3,
FCIERR_TEMP_FILE = 4,
FCIERR_BAD_COMPR_TYPE = 5,
FCIERR_CAB_FILE = 6,
FCIERR_USER_ABORT = 7,
FCIERR_MCI_FAIL = 8,
FCIERR_CAB_FORMAT_LIMIT = 9
} FCIERROR;public enum FCIERROR : int
{
FCIERR_NONE = 0,
FCIERR_OPEN_SRC = 1,
FCIERR_READ_SRC = 2,
FCIERR_ALLOC_FAIL = 3,
FCIERR_TEMP_FILE = 4,
FCIERR_BAD_COMPR_TYPE = 5,
FCIERR_CAB_FILE = 6,
FCIERR_USER_ABORT = 7,
FCIERR_MCI_FAIL = 8,
FCIERR_CAB_FORMAT_LIMIT = 9,
}Public Enum FCIERROR As Integer
FCIERR_NONE = 0
FCIERR_OPEN_SRC = 1
FCIERR_READ_SRC = 2
FCIERR_ALLOC_FAIL = 3
FCIERR_TEMP_FILE = 4
FCIERR_BAD_COMPR_TYPE = 5
FCIERR_CAB_FILE = 6
FCIERR_USER_ABORT = 7
FCIERR_MCI_FAIL = 8
FCIERR_CAB_FORMAT_LIMIT = 9
End Enumimport enum
class FCIERROR(enum.IntEnum):
FCIERR_NONE = 0
FCIERR_OPEN_SRC = 1
FCIERR_READ_SRC = 2
FCIERR_ALLOC_FAIL = 3
FCIERR_TEMP_FILE = 4
FCIERR_BAD_COMPR_TYPE = 5
FCIERR_CAB_FILE = 6
FCIERR_USER_ABORT = 7
FCIERR_MCI_FAIL = 8
FCIERR_CAB_FORMAT_LIMIT = 9// FCIERROR
pub const FCIERR_NONE: i32 = 0;
pub const FCIERR_OPEN_SRC: i32 = 1;
pub const FCIERR_READ_SRC: i32 = 2;
pub const FCIERR_ALLOC_FAIL: i32 = 3;
pub const FCIERR_TEMP_FILE: i32 = 4;
pub const FCIERR_BAD_COMPR_TYPE: i32 = 5;
pub const FCIERR_CAB_FILE: i32 = 6;
pub const FCIERR_USER_ABORT: i32 = 7;
pub const FCIERR_MCI_FAIL: i32 = 8;
pub const FCIERR_CAB_FORMAT_LIMIT: i32 = 9;// FCIERROR
const (
FCIERR_NONE int32 = 0
FCIERR_OPEN_SRC int32 = 1
FCIERR_READ_SRC int32 = 2
FCIERR_ALLOC_FAIL int32 = 3
FCIERR_TEMP_FILE int32 = 4
FCIERR_BAD_COMPR_TYPE int32 = 5
FCIERR_CAB_FILE int32 = 6
FCIERR_USER_ABORT int32 = 7
FCIERR_MCI_FAIL int32 = 8
FCIERR_CAB_FORMAT_LIMIT int32 = 9
)const
FCIERR_NONE = 0;
FCIERR_OPEN_SRC = 1;
FCIERR_READ_SRC = 2;
FCIERR_ALLOC_FAIL = 3;
FCIERR_TEMP_FILE = 4;
FCIERR_BAD_COMPR_TYPE = 5;
FCIERR_CAB_FILE = 6;
FCIERR_USER_ABORT = 7;
FCIERR_MCI_FAIL = 8;
FCIERR_CAB_FORMAT_LIMIT = 9;// FCIERROR
pub const FCIERR_NONE: i32 = 0;
pub const FCIERR_OPEN_SRC: i32 = 1;
pub const FCIERR_READ_SRC: i32 = 2;
pub const FCIERR_ALLOC_FAIL: i32 = 3;
pub const FCIERR_TEMP_FILE: i32 = 4;
pub const FCIERR_BAD_COMPR_TYPE: i32 = 5;
pub const FCIERR_CAB_FILE: i32 = 6;
pub const FCIERR_USER_ABORT: i32 = 7;
pub const FCIERR_MCI_FAIL: i32 = 8;
pub const FCIERR_CAB_FORMAT_LIMIT: i32 = 9;const
FCIERR_NONE* = 0
FCIERR_OPEN_SRC* = 1
FCIERR_READ_SRC* = 2
FCIERR_ALLOC_FAIL* = 3
FCIERR_TEMP_FILE* = 4
FCIERR_BAD_COMPR_TYPE* = 5
FCIERR_CAB_FILE* = 6
FCIERR_USER_ABORT* = 7
FCIERR_MCI_FAIL* = 8
FCIERR_CAB_FORMAT_LIMIT* = 9enum FCIERROR : int {
FCIERR_NONE = 0,
FCIERR_OPEN_SRC = 1,
FCIERR_READ_SRC = 2,
FCIERR_ALLOC_FAIL = 3,
FCIERR_TEMP_FILE = 4,
FCIERR_BAD_COMPR_TYPE = 5,
FCIERR_CAB_FILE = 6,
FCIERR_USER_ABORT = 7,
FCIERR_MCI_FAIL = 8,
FCIERR_CAB_FORMAT_LIMIT = 9,
}#define global FCIERR_NONE 0x0
#define global FCIERR_OPEN_SRC 0x1
#define global FCIERR_READ_SRC 0x2
#define global FCIERR_ALLOC_FAIL 0x3
#define global FCIERR_TEMP_FILE 0x4
#define global FCIERR_BAD_COMPR_TYPE 0x5
#define global FCIERR_CAB_FILE 0x6
#define global FCIERR_USER_ABORT 0x7
#define global FCIERR_MCI_FAIL 0x8
#define global FCIERR_CAB_FORMAT_LIMIT 0x9