summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-26 21:18:05 +0000
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-26 21:18:05 +0000
commit5da99ed57079cb9100a0ae790ba2abc1496d0559 (patch)
tree2a86c92c68a7a2e5adeb795efc76a538ea902bdb /firmware/export
parent74a1fb8d835da39cb169cbc00588e96ababf25b5 (diff)
downloadrockbox-5da99ed57079cb9100a0ae790ba2abc1496d0559.tar.gz
rockbox-5da99ed57079cb9100a0ae790ba2abc1496d0559.zip
long policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6071 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/fat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/fat.h b/firmware/export/fat.h
index 3bb895cdc8..c56d8f85f6 100644
--- a/firmware/export/fat.h
+++ b/firmware/export/fat.h
@@ -90,7 +90,7 @@ extern int fat_open(IF_MV2(int volume,)
90extern int fat_create_file(const char* name, 90extern int fat_create_file(const char* name,
91 struct fat_file* ent, 91 struct fat_file* ent,
92 struct fat_dir* dir); 92 struct fat_dir* dir);
93extern int fat_readwrite(struct fat_file *ent, long sectorcount, 93extern long fat_readwrite(struct fat_file *ent, long sectorcount,
94 void* buf, bool write ); 94 void* buf, bool write );
95extern int fat_closewrite(struct fat_file *ent, long size, int attr); 95extern int fat_closewrite(struct fat_file *ent, long size, int attr);
96extern int fat_seek(struct fat_file *ent, unsigned long sector ); 96extern int fat_seek(struct fat_file *ent, unsigned long sector );
@@ -105,7 +105,7 @@ extern int fat_opendir(IF_MV2(int volume,)
105 struct fat_dir *ent, unsigned long currdir, 105 struct fat_dir *ent, unsigned long currdir,
106 const struct fat_dir *parent_dir); 106 const struct fat_dir *parent_dir);
107extern int fat_getnext(struct fat_dir *ent, struct fat_direntry *entry); 107extern int fat_getnext(struct fat_dir *ent, struct fat_direntry *entry);
108extern int fat_get_cluster_size(IF_MV_NONVOID(int volume)); 108extern unsigned int fat_get_cluster_size(IF_MV_NONVOID(int volume));
109extern bool fat_ismounted(int volume); 109extern bool fat_ismounted(int volume);
110 110
111#endif 111#endif