Changeset 1433ecda in mainline for uspace/srv/fs/fat/fat.h
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
r47b2d7e3 r1433ecda 105 105 /** Boot sector signature. */ 106 106 uint16_t signature; 107 } __attribute__ 107 } __attribute__((packed)); 108 108 struct { 109 109 /* FAT32 only */ … … 136 136 /** Signature. */ 137 137 uint16_t signature; 138 } __attribute__ 138 } __attribute__((packed)) fat32; 139 139 }; 140 } __attribute__ 140 } __attribute__((packed)) fat_bs_t; 141 141 142 142 #define FAT32_FSINFO_SIG1 "RRaA" … … 152 152 uint8_t res2[12]; 153 153 uint8_t sig3[4]; 154 } __attribute__ 154 } __attribute__((packed)) fat32_fsinfo_t; 155 155 156 156 typedef enum {
Note:
See TracChangeset
for help on using the changeset viewer.