Changeset 991f645 in mainline for uspace/srv/fs/fat/fat_fat.h
- Timestamp:
- 2010-11-18T17:39:28Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b5a4131
- Parents:
- 51a268f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_fat.h
r51a268f r991f645 61 61 #define fat_clusters_get(numc, bs, dh, fc) \ 62 62 fat_cluster_walk((bs), (dh), (fc), NULL, (numc), (uint16_t) -1) 63 extern int fat_cluster_walk(struct fat_bs *, dev _handle_t, fat_cluster_t,63 extern int fat_cluster_walk(struct fat_bs *, devmap_handle_t, fat_cluster_t, 64 64 fat_cluster_t *, uint16_t *, uint16_t); 65 65 66 66 extern int fat_block_get(block_t **, struct fat_bs *, struct fat_node *, 67 67 aoff64_t, int); 68 extern int _fat_block_get(block_t **, struct fat_bs *, dev _handle_t,68 extern int _fat_block_get(block_t **, struct fat_bs *, devmap_handle_t, 69 69 fat_cluster_t, fat_cluster_t *, aoff64_t, int); 70 70 … … 73 73 extern int fat_chop_clusters(struct fat_bs *, struct fat_node *, 74 74 fat_cluster_t); 75 extern int fat_alloc_clusters(struct fat_bs *, dev _handle_t, unsigned,75 extern int fat_alloc_clusters(struct fat_bs *, devmap_handle_t, unsigned, 76 76 fat_cluster_t *, fat_cluster_t *); 77 extern int fat_free_clusters(struct fat_bs *, dev _handle_t, fat_cluster_t);78 extern int fat_alloc_shadow_clusters(struct fat_bs *, dev _handle_t,77 extern int fat_free_clusters(struct fat_bs *, devmap_handle_t, fat_cluster_t); 78 extern int fat_alloc_shadow_clusters(struct fat_bs *, devmap_handle_t, 79 79 fat_cluster_t *, unsigned); 80 extern int fat_get_cluster(struct fat_bs *, dev _handle_t, unsigned,80 extern int fat_get_cluster(struct fat_bs *, devmap_handle_t, unsigned, 81 81 fat_cluster_t, fat_cluster_t *); 82 extern int fat_set_cluster(struct fat_bs *, dev _handle_t, unsigned,82 extern int fat_set_cluster(struct fat_bs *, devmap_handle_t, unsigned, 83 83 fat_cluster_t, fat_cluster_t); 84 84 extern int fat_fill_gap(struct fat_bs *, struct fat_node *, fat_cluster_t, 85 85 aoff64_t); 86 extern int fat_zero_cluster(struct fat_bs *, dev _handle_t, fat_cluster_t);87 extern int fat_sanity_check(struct fat_bs *, dev _handle_t);86 extern int fat_zero_cluster(struct fat_bs *, devmap_handle_t, fat_cluster_t); 87 extern int fat_sanity_check(struct fat_bs *, devmap_handle_t); 88 88 89 89 #endif
Note:
See TracChangeset
for help on using the changeset viewer.