diff options
author | Jens Arnold <amiconn@rockbox.org> | 2005-03-02 22:50:38 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2005-03-02 22:50:38 +0000 |
commit | 48dad47df98bdec632e8930b6a97359dc2c428f5 (patch) | |
tree | 80d7abcad6052aec518df0a47788fb675ee3d195 /apps/plugin.c | |
parent | e002b9cfd0c94b77643859948649251fe67b7695 (diff) |
Added mkdir() to the plugin api.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6103 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r-- | apps/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 86e4a25523..38bc25b9a0 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -264,6 +264,7 @@ static const struct plugin_api rockbox_api = { cpu_boost, #endif #endif + PREFIX(mkdir), }; int plugin_load(const char* plugin, void* parameter) |