Changeset a248234 in mainline for uspace/srv/fs/fat/fat_dentry.h


Ignore:
Timestamp:
2009-05-06T19:30:07Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8bb129d
Parents:
0be3e8b
Message:

add support for lowercase extension and lowercase basename bits (NT extension of plain FAT16)
this implements request ticket #57

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_dentry.h

    r0be3e8b ra248234  
    4848#define FAT_ATTR_SUBDIR         (1 << 4)
    4949
     50#define FAT_LCASE_LOWER_NAME    0x08
     51#define FAT_LCASE_LOWER_EXT     0x10
     52
    5053#define FAT_PAD                 ' '
    5154
     
    6669        uint8_t         ext[3];
    6770        uint8_t         attr;
    68         uint8_t         reserved;
     71        uint8_t         lcase;
    6972        uint8_t         ctime_fine;
    7073        uint16_t        ctime;
Note: See TracChangeset for help on using the changeset viewer.