VirtualBox

Changeset 76305 in vbox for trunk/include/iprt


Ignore:
Timestamp:
Dec 20, 2018 12:03:23 AM (6 years ago)
Author:
vboxsync
Message:

Runtime/fs/extvfs: Updates, reading data from ext2/ext3 filesystems seems to work to some extent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/formats/ext.h

    r76299 r76305  
    910910typedef const EXTDIRENTRY *PCEXTDIRENTRY;
    911911
     912
     913/**
     914 * Extended directory entry with the maximum size (263 bytes).
     915 */
     916#pragma pack(1)
     917typedef union EXTDIRENTRYEX
     918{
     919    /** The directory entry. */
     920    EXTDIRENTRY Core;
     921    /** The byte view. */
     922    uint8_t     au8[263];
     923} EXTDIRENTRYEX;
     924#pragma pack()
     925AssertCompileSize(EXTDIRENTRYEX, 263);
     926/** Pointer to an extended directory entry. */
     927typedef EXTDIRENTRYEX *PEXTDIRENTRYEX;
     928/** Pointer to a const extended directory entry. */
     929typedef const EXTDIRENTRYEX *PCEXTDIRENTRYEX;
     930
     931
    912932/** @name EXT_DIRENTRY_TYPE_XXX - file type
    913933 * @{ */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette