Changeset 033ef7d3 in mainline for uspace/srv/fs/fat/fat.h
- Timestamp:
- 2008-10-26T13:09:24Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f57d0e
- Parents:
- 6ebaff9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
r6ebaff9 r033ef7d3 116 116 } __attribute__ ((packed)) fat_bs_t; 117 117 118 #define FAT_ATTR_RDONLY (1 << 0)119 #define FAT_ATTR_VOLLABEL (1 << 3)120 #define FAT_ATTR_SUBDIR (1 << 4)121 122 typedef struct {123 uint8_t name[8];124 uint8_t ext[3];125 uint8_t attr;126 uint8_t reserved;127 uint8_t ctime_fine;128 uint16_t ctime;129 uint16_t cdate;130 uint16_t adate;131 union {132 uint16_t eaidx; /* FAT12/FAT16 */133 uint16_t firstc_hi; /* FAT32 */134 };135 uint16_t mtime;136 uint16_t mdate;137 union {138 uint16_t firstc; /* FAT12/FAT16 */139 uint16_t firstc_lo; /* FAT32 */140 };141 uint32_t size;142 } __attribute__ ((packed)) fat_dentry_t;143 144 118 typedef uint16_t fat_cluster_t; 145 119
Note:
See TracChangeset
for help on using the changeset viewer.