summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-09-01 21:45:58 +0000
committerThomas Martitz <kugel@rockbox.org>2010-09-01 21:45:58 +0000
commiteac36d5a097c0c91ba7204cccc6001bf5bec2513 (patch)
treeef90c0f0abd27ab2c354ab8dff842d36849c7f2d /firmware/export
parentdc8ad8684c48e60b45bdbf2bd837941e2172a476 (diff)
downloadrockbox-eac36d5a097c0c91ba7204cccc6001bf5bec2513.tar.gz
rockbox-eac36d5a097c0c91ba7204cccc6001bf5bec2513.zip
struct DIR -> DIR, should fix most if not all reds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27970 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/filefuncs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/filefuncs.h b/firmware/export/filefuncs.h
index f69c6da29c..3d4e73ad9f 100644
--- a/firmware/export/filefuncs.h
+++ b/firmware/export/filefuncs.h
@@ -24,6 +24,7 @@
24 24
25#include <stdbool.h> 25#include <stdbool.h>
26#include "config.h" 26#include "config.h"
27#include "file.h"
27#include "dir.h" 28#include "dir.h"
28 29
29#ifdef HAVE_MULTIVOLUME 30#ifdef HAVE_MULTIVOLUME
@@ -34,6 +35,6 @@ int strip_volume(const char* name, char* namecopy);
34bool file_exists(const char *file); 35bool file_exists(const char *file);
35bool dir_exists(const char *path); 36bool dir_exists(const char *path);
36#endif 37#endif
37extern struct dirinfo dir_get_info(struct DIR* parent, struct dirent *entry); 38extern struct dirinfo dir_get_info(DIR* parent, struct dirent *entry);
38 39
39#endif /* __INCLUDE_FILEFUNCS_H_ */ 40#endif /* __INCLUDE_FILEFUNCS_H_ */