|
#define | ISODCL(from, to) (to - from + 1) |
|
#define | ISO_VD_PRIMARY 1 |
|
#define | ISO_VD_SUPPLEMENTARY 2 /* Used by Joliet */ |
|
#define | ISO_VD_END 255 |
|
#define | ISO_STANDARD_ID "CD001" |
|
#define | EL_TORITO_ID "EL TORITO SPECIFICATION" |
|
#define | EL_TORITO_ARCH_x86 0 |
|
#define | EL_TORITO_ARCH_PPC 1 |
|
#define | EL_TORITO_ARCH_MAC 2 |
|
#define | EL_TORITO_ARCH_EFI 0xEF |
|
#define | EL_TORITO_BOOTABLE 0x88 |
|
#define | EL_TORITO_NOT_BOOTABLE 0 |
|
#define | EL_TORITO_MEDIA_NOEMUL 0 |
|
#define | EL_TORITO_MEDIA_12FLOP 1 |
|
#define | EL_TORITO_MEDIA_144FLOP 2 |
|
#define | EL_TORITO_MEDIA_288FLOP 3 |
|
#define | EL_TORITO_MEDIA_HD 4 |
|
#define | EL_TORITO_SHDR_ID_SHDR 0x90 |
|
#define | EL_TORITO_SHDR_ID_LAST_SHDR 0x91 |
|
#define | LEN_ISONAME 31 |
|
#define | MAX_ISONAME_V1 37 |
|
#define | MAX_ISONAME_V2 207 /* 254 - 33 - 14 (XA Record) */ |
|
#define | MAX_ISONAME_V2_RR 193 /* 254 - 33 - 28 (CE Record) */ |
|
#define | MAX_ISONAME_V2_RR_XA 179 /* 254 - 33 - 14 - 28 */ |
|
#define | MAX_ISONAME MAX_ISONAME_V2 /* Used for array space defs */ |
|
#define | MAX_ISODIR 254 /* Must be even and <= 255 */ |
|
#define | ISO_FILE 0 /* Not really a flag... */ |
|
#define | ISO_EXISTENCE 1 /* Do not make existence known (hidden) */ |
|
#define | ISO_DIRECTORY 2 /* This file is a directory */ |
|
#define | ISO_ASSOCIATED 4 /* This file is an assiciated file */ |
|
#define | ISO_RECORD 8 /* Record format in extended attr. != 0 */ |
|
#define | ISO_PROTECTION 16 /* No read/execute perm. in ext. attr. */ |
|
#define | ISO_DRESERVED1 32 /* Reserved bit 5 */ |
|
#define | ISO_DRESERVED2 64 /* Reserved bit 6 */ |
|
#define | ISO_MULTIEXTENT 128 /* Not final entry of a mult. ext. file */ |
|
#define | ISO_GS_READ 0x0001 /* System Group Read */ |
|
#define | ISO_BIT_1 0x0002 |
|
#define | ISO_GS_EXEC 0x0004 /* System Group Execute */ |
|
#define | ISO_BIT_3 0x0008 |
|
#define | ISO_O_READ 0x0010 /* Owner Read */ |
|
#define | ISO_BIT_5 0x0020 |
|
#define | ISO_O_EXEC 0x0040 /* Owner Exexute */ |
|
#define | ISO_BIT_7 0x0080 |
|
#define | ISO_G_READ 0x0100 /* Group Read */ |
|
#define | ISO_BIT_9 0x0200 |
|
#define | ISO_G_EXEC 0x0400 /* Group Execute */ |
|
#define | ISO_BIT_11 0x0800 |
|
#define | ISO_W_READ 0x1000 /* World (other) Read */ |
|
#define | ISO_BIT_13 0x2000 |
|
#define | ISO_W_EXEC 0x4000 /* World (other) Execute */ |
|
#define | ISO_BIT_15 0x8000 |
|
#define | ISO_MB_ONE |
|
#define | XA_O_READ 0x0001 /* Owner Read */ |
|
#define | XA_O_RES 0x0002 /* Owner Reserved (write ?) */ |
|
#define | XA_O_EXEC 0x0004 /* Owner Execute */ |
|
#define | XA_O_RES2 0x0008 /* Owner Reserved */ |
|
#define | XA_G_READ 0x0010 /* Group Read */ |
|
#define | XA_G_RES 0x0020 /* Group Reserved (write ?) */ |
|
#define | XA_G_EXEC 0x0040 /* Group Execute */ |
|
#define | XA_G_RES2 0x0080 /* Group Reserved */ |
|
#define | XA_W_READ 0x0100 /* World Read */ |
|
#define | XA_W_RES 0x0200 /* World Reserved (write ?) */ |
|
#define | XA_W_EXEC 0x0400 /* World Execute */ |
|
#define | XA_FORM1 0x0800 /* File contains Form 1 sector */ |
|
#define | XA_FORM2 0x1000 /* File contains Form 2 sector */ |
|
#define | XA_INTERLEAVED 0x2000 /* File contains interleaved sectors */ |
|
#define | XA_CDDA 0x4000 /* File contains audio data */ |
|
#define | XA_DIR 0x8000 /* This is a directory */ |
|
#define | XA_SUBH_EOR 0x01 /* End-Of-Record */ |
|
#define | XA_SUBH_VIDEO 0x02 /* Video Block */ |
|
#define | XA_SUBH_AUDIO 0x04 /* Audio Block (not CD-DA) */ |
|
#define | XA_SUBH_DATA 0x08 /* Data Block */ |
|
#define | XA_SUBH_TRIGGER 0x10 /* Trigger Block */ |
|
#define | XA_SUBH_FORM2 0x20 /* 0 == Form1, 1 == Form2 */ |
|
#define | XA_SUBH_REALTIME 0x40 /* Real Time Block */ |
|
#define | XA_SUBH_EOF 0x80 /* End-Of-File */ |
|