Changeset 76305 in vbox for trunk/include/iprt
- Timestamp:
- Dec 20, 2018 12:03:23 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/formats/ext.h
r76299 r76305 910 910 typedef const EXTDIRENTRY *PCEXTDIRENTRY; 911 911 912 913 /** 914 * Extended directory entry with the maximum size (263 bytes). 915 */ 916 #pragma pack(1) 917 typedef union EXTDIRENTRYEX 918 { 919 /** The directory entry. */ 920 EXTDIRENTRY Core; 921 /** The byte view. */ 922 uint8_t au8[263]; 923 } EXTDIRENTRYEX; 924 #pragma pack() 925 AssertCompileSize(EXTDIRENTRYEX, 263); 926 /** Pointer to an extended directory entry. */ 927 typedef EXTDIRENTRYEX *PEXTDIRENTRYEX; 928 /** Pointer to a const extended directory entry. */ 929 typedef const EXTDIRENTRYEX *PCEXTDIRENTRYEX; 930 931 912 932 /** @name EXT_DIRENTRY_TYPE_XXX - file type 913 933 * @{ */
Note:
See TracChangeset
for help on using the changeset viewer.