Changeset 985e26d2 in mainline for uspace/srv/fs/fat/fat.h
- Timestamp:
- 2010-01-07T19:06:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8190e63
- Parents:
- 743e17b (diff), eca2435 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
r743e17b r985e26d2 36 36 #include "fat_fat.h" 37 37 #include <ipc/ipc.h> 38 #include <fibril_sync .h>38 #include <fibril_synch.h> 39 39 #include <libfs.h> 40 40 #include <atomic.h> … … 89 89 uint16_t signature; 90 90 } __attribute__ ((packed)); 91 struct {91 struct fat32 { 92 92 /* FAT32 only */ 93 93 /** Sectors per FAT. */ … … 215 215 extern void fat_sync(ipc_callid_t, ipc_call_t *); 216 216 217 extern fat_idx_t *fat_idx_get_new(dev_handle_t);217 extern int fat_idx_get_new(fat_idx_t **, dev_handle_t); 218 218 extern fat_idx_t *fat_idx_get_by_pos(dev_handle_t, fat_cluster_t, unsigned); 219 219 extern fat_idx_t *fat_idx_get_by_index(dev_handle_t, fs_index_t);
Note:
See TracChangeset
for help on using the changeset viewer.