diff options
author | Robert Kukla <roolku@rockbox.org> | 2007-11-21 21:28:27 +0000 |
---|---|---|
committer | Robert Kukla <roolku@rockbox.org> | 2007-11-21 21:28:27 +0000 |
commit | d87b037efe7d001902c0cde992e1633ff9f70061 (patch) | |
tree | ddea298e51d73443aad0d31fca7d59311444efab /apps/plugin.c | |
parent | a2ad8537af659972b2e859c99c0ff75e374b73f9 (diff) |
consolidate the 3 file_exists() functions into one; use the version that explicitly uses dircache; give dir_exists() the same treatment for consistency
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15742 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r-- | apps/plugin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 145d30b41b..9b620b1280 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -522,6 +522,9 @@ static const struct plugin_api rockbox_api = { #ifdef PROC_NEEDS_CACHEALIGN align_buffer, #endif + + file_exists, + dir_exists, }; int plugin_load(const char* plugin, void* parameter) |