]> git.sven.stormbind.net Git - sven/exfat-utils.git/blobdiff - libexfat/exfatfs.h
Imported Upstream version 0.9.7
[sven/exfat-utils.git] / libexfat / exfatfs.h
index e7d7ee5c2308bcdca74b0cbbd1907ee09be84e4e..61e39a1261ba48afa79966deee0a2adf4b794a78 100644 (file)
@@ -31,6 +31,8 @@ typedef uint32_t cluster_t;           /* cluster number */
 #define EXFAT_CLUSTER_BAD 0xfffffff7 /* cluster contains bad sector */
 #define EXFAT_CLUSTER_END 0xffffffff /* final cluster of file or directory */
 
+#define EXFAT_STATE_MOUNTED 2
+
 struct exfat_super_block
 {
        uint8_t jump[3];                                /* 0x00 jmp and nop instructions */
@@ -64,7 +66,6 @@ __attribute__((__packed__));
 #define EXFAT_ENTRY_VALID     0x80
 #define EXFAT_ENTRY_CONTINUED 0x40
 
-#define EXFAT_ENTRY_EOD       (0x00)
 #define EXFAT_ENTRY_BITMAP    (0x01 | EXFAT_ENTRY_VALID)
 #define EXFAT_ENTRY_UPCASE    (0x02 | EXFAT_ENTRY_VALID)
 #define EXFAT_ENTRY_LABEL     (0x03 | EXFAT_ENTRY_VALID)