Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_fat.h

    r6da81e0 red903174  
    6464    fat_cluster_t *, uint16_t *, uint16_t);
    6565
    66 extern int fat_block_get(block_t **, struct fat_bs *, struct fat_node *,
    67     aoff64_t, int);
     66#define fat_block_get(b, bs, np, bn, flags) \
     67    _fat_block_get((b), (bs), (np)->idx->dev_handle, (np)->firstc, (bn), \
     68    (flags))
     69
    6870extern int _fat_block_get(block_t **, struct fat_bs *, dev_handle_t,
    69     fat_cluster_t, fat_cluster_t *, aoff64_t, int);
     71    fat_cluster_t, aoff64_t, int);
    7072
    7173extern int fat_append_clusters(struct fat_bs *, struct fat_node *,
    72     fat_cluster_t, fat_cluster_t);
     74    fat_cluster_t);
    7375extern int fat_chop_clusters(struct fat_bs *, struct fat_node *,
    7476    fat_cluster_t);
Note: See TracChangeset for help on using the changeset viewer.