Changeset f061de75 in mainline for uspace/srv/fs/exfat/exfat_directory.h
- Timestamp:
- 2011-08-14T17:24:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cd860fc
- Parents:
- 25c60f4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_directory.h
r25c60f4 rf061de75 36 36 #include <stdint.h> 37 37 #include "exfat.h" 38 #include "exfat_fat.h" 38 39 #include "exfat_dentry.h" 39 40 … … 42 43 exfat_bs_t *bs; 43 44 exfat_node_t *nodep; 45 devmap_handle_t devmap_handle; 44 46 uint32_t blocks; 45 47 uint32_t bnum; … … 47 49 block_t *b; 48 50 bool last; 51 bool fragmented; 52 exfat_cluster_t firstc; 49 53 } __attribute__ ((packed)) exfat_directory_t; 50 54 … … 52 56 extern void exfat_directory_init(exfat_directory_t *di); 53 57 extern int exfat_directory_open(exfat_node_t *nodep, exfat_directory_t *di); 58 extern int exfat_directory_open_parent(exfat_directory_t *di, 59 devmap_handle_t devmap_handle, exfat_cluster_t firstc, bool fragmented); 54 60 extern int exfat_directory_close(exfat_directory_t *di); 55 61
Note:
See TracChangeset
for help on using the changeset viewer.