Changes in uspace/srv/fs/fat/fat.h [1e4cada:852b801] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
r1e4cada r852b801 36 36 #include "fat_fat.h" 37 37 #include <ipc/ipc.h> 38 #include <fibril_sync h.h>38 #include <fibril_sync.h> 39 39 #include <libfs.h> 40 40 #include <atomic.h> … … 89 89 uint16_t signature; 90 90 } __attribute__ ((packed)); 91 struct fat32{91 struct { 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 int fat_idx_get_new(fat_idx_t **,dev_handle_t);217 extern fat_idx_t *fat_idx_get_new(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.