Changeset fc35e98 in mainline for uspace/srv/fs/fat/fat_fat.h
- Timestamp:
- 2011-04-07T19:14:33Z (12 years ago)
- Branches:
- lfn, master, serial
- Children:
- 97bc3ee
- Parents:
- ccca251
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_fat.h
rccca251 rfc35e98 40 40 #define FAT1 0 41 41 42 #define FAT_CLST_RES0 0x0000 43 #define FAT_CLST_RES1 0x0001 44 #define FAT_CLST_FIRST 0x0002 45 #define FAT_CLST_BAD 0xfff7 46 #define FAT_CLST_LAST1 0xfff8 47 #define FAT_CLST_LAST8 0xffff 42 #define FAT_CLST_RES0 0x0000 43 #define FAT_CLST_RES1 0x0001 44 #define FAT_CLST_FIRST 0x0002 45 46 #define FAT12_CLST_BAD 0x0ff7 47 #define FAT12_CLST_LAST1 0x0ff8 48 #define FAT12_CLST_LAST8 0x0fff 49 #define FAT16_CLST_BAD 0xfff7 50 #define FAT16_CLST_LAST1 0xfff8 51 #define FAT16_CLST_LAST8 0xffff 48 52 49 53 /* internally used to mark root directory's parent */ … … 51 55 /* internally used to mark root directory */ 52 56 #define FAT_CLST_ROOT FAT_CLST_RES1 57 58 #define FATTYPE(bs) (bs)->reserved 53 59 54 60 /* forward declarations */
Note: See TracChangeset
for help on using the changeset viewer.