Win32 API 日本語リファレンス
ホームStorage.Cabinets › FCIERROR

FCIERROR

列挙型
基底型i4

メンバー 10

名前10進16進
FCIERR_NONE00x0
FCIERR_OPEN_SRC10x1
FCIERR_READ_SRC20x2
FCIERR_ALLOC_FAIL30x3
FCIERR_TEMP_FILE40x4
FCIERR_BAD_COMPR_TYPE50x5
FCIERR_CAB_FILE60x6
FCIERR_USER_ABORT70x7
FCIERR_MCI_FAIL80x8
FCIERR_CAB_FORMAT_LIMIT90x9

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 9
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,
}
#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