diff options
| author | Nils Wallménius <nils@rockbox.org> | 2007-02-25 15:44:55 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2007-02-25 15:44:55 +0000 |
| commit | e53e67014f93e4d5188620bd2219bc654d533bf4 (patch) | |
| tree | a59059a23065422731764c44919b02906e402f77 /firmware/export | |
| parent | 2906c36df3403b8c8146718beedfc480766a9d6c (diff) | |
| download | rockbox-e53e67014f93e4d5188620bd2219bc654d533bf4.zip rockbox-e53e67014f93e4d5188620bd2219bc654d533bf4.tar.gz rockbox-e53e67014f93e4d5188620bd2219bc654d533bf4.tar.bz2 rockbox-e53e67014f93e4d5188620bd2219bc654d533bf4.tar.xz | |
Remove unused code, make comments c-style, make one private function static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12480 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/fat.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/firmware/export/fat.h b/firmware/export/fat.h index 2680fdf..0dfd395 100644 --- a/firmware/export/fat.h +++ b/firmware/export/fat.h @@ -86,12 +86,13 @@ struct fat_dir extern void fat_init(void); extern int fat_mount(IF_MV2(int volume,) IF_MV2(int drive,) long startsector); extern int fat_unmount(int volume, bool flush); -extern void fat_size(IF_MV2(int volume,) unsigned long* size, unsigned long* free); // public for info -extern void fat_recalc_free(IF_MV_NONVOID(int volume)); // public for debug info screen +extern void fat_size(IF_MV2(int volume,) /* public for info */ + unsigned long* size, + unsigned long* free); +extern void fat_recalc_free(IF_MV_NONVOID(int volume)); /* public for debug info screen */ extern int fat_create_dir(const char* name, struct fat_dir* newdir, struct fat_dir* dir); -extern long fat_startsector(IF_MV_NONVOID(int volume)); // public for config sector extern int fat_open(IF_MV2(int volume,) long cluster, struct fat_file* ent, @@ -114,7 +115,7 @@ extern int fat_opendir(IF_MV2(int volume,) struct fat_dir *ent, unsigned long currdir, const struct fat_dir *parent_dir); extern int fat_getnext(struct fat_dir *ent, struct fat_direntry *entry); -extern unsigned int fat_get_cluster_size(IF_MV_NONVOID(int volume)); +extern unsigned int fat_get_cluster_size(IF_MV_NONVOID(int volume)); /* public for debug info screen */ extern bool fat_ismounted(int volume); #endif |