Changeset 67775 in vbox for trunk/include/iprt/formats
- Timestamp:
- Jul 4, 2017 1:06:39 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116686
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/formats/iso9660.h
r67773 r67775 40 40 /** The (default) logical sectors size of ISO 9660. */ 41 41 #define ISO9660_SECTOR_SIZE 2048 42 /** The (default) sector offset mask of ISO 9660. */ 43 #define ISO9660_SECTOR_OFFSET_MASK 2047 42 44 /** Maximum filename length (level 2 & 3). */ 43 45 #define ISO9660_MAX_NAME_LEN 30 … … 1071 1073 #define ISO9660SUSPES_LEN 5 /**< SUSP extension sequence entry length (fixed). */ 1072 1074 1075 1076 /** 1077 * SUSP and RRIP union. 1078 */ 1079 typedef union ISO9660SUSPUNION 1080 { 1081 ISO9660SUSPHDR Hdr; /**< SUSP header . */ 1082 ISO9660SUSPCE CE; /**< SUSP continuation entry. */ 1083 ISO9660SUSPPD PD; /**< SUSP padding entry. */ 1084 ISO9660SUSPSP SP; /**< SUSP system use protocol entry. */ 1085 ISO9660SUSPST ST; /**< SUSP terminator entry. */ 1086 ISO9660SUSPER ER; /**< SUSP extension record entry. */ 1087 ISO9660SUSPES ES; /**< SUSP extension sequence entry. */ 1088 } ISO9660SUSPUNION; 1089 /** Pointer to a SUSP and RRIP union. */ 1090 typedef ISO9660SUSPUNION *PISO9660SUSPUNION; 1091 /** Pointer to a const SUSP and RRIP union. */ 1092 typedef ISO9660SUSPUNION *PCISO9660SUSPUNION; 1093 1073 1094 /** @} */ 1074 1095
Note:
See TracChangeset
for help on using the changeset viewer.