diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-09-01 21:45:58 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-09-01 21:45:58 +0000 |
| commit | eac36d5a097c0c91ba7204cccc6001bf5bec2513 (patch) | |
| tree | ef90c0f0abd27ab2c354ab8dff842d36849c7f2d /firmware/export | |
| parent | dc8ad8684c48e60b45bdbf2bd837941e2172a476 (diff) | |
| download | rockbox-eac36d5a097c0c91ba7204cccc6001bf5bec2513.zip rockbox-eac36d5a097c0c91ba7204cccc6001bf5bec2513.tar.gz rockbox-eac36d5a097c0c91ba7204cccc6001bf5bec2513.tar.bz2 rockbox-eac36d5a097c0c91ba7204cccc6001bf5bec2513.tar.xz | |
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.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/filefuncs.h b/firmware/export/filefuncs.h index f69c6da..3d4e73a 100644 --- a/firmware/export/filefuncs.h +++ b/firmware/export/filefuncs.h @@ -24,6 +24,7 @@ #include <stdbool.h> #include "config.h" +#include "file.h" #include "dir.h" #ifdef HAVE_MULTIVOLUME @@ -34,6 +35,6 @@ int strip_volume(const char* name, char* namecopy); bool file_exists(const char *file); bool dir_exists(const char *path); #endif -extern struct dirinfo dir_get_info(struct DIR* parent, struct dirent *entry); +extern struct dirinfo dir_get_info(DIR* parent, struct dirent *entry); #endif /* __INCLUDE_FILEFUNCS_H_ */ |