Changes in uspace/srv/fs/fat/fat.h [852b801:f563126] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
r852b801 rf563126 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.