diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2011-09-18 16:16:50 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-09-18 16:16:50 +0000 |
| commit | 9c5f040f8e31af4b5ec2a23722a20e6ccdebc59f (patch) | |
| tree | b45aaec566098cbb37765a333a7485d095c6d242 | |
| parent | 1d1e8e4eb723f34e50aaf3ffcff348367817bc52 (diff) | |
| download | rockbox-9c5f040f8e31af4b5ec2a23722a20e6ccdebc59f.zip rockbox-9c5f040f8e31af4b5ec2a23722a20e6ccdebc59f.tar.gz rockbox-9c5f040f8e31af4b5ec2a23722a20e6ccdebc59f.tar.bz2 rockbox-9c5f040f8e31af4b5ec2a23722a20e6ccdebc59f.tar.xz | |
Add the plugin_start prototype to plugin.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30572 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 941c193..a33089b 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -985,6 +985,7 @@ void plugin_tsr(bool (*exit_callback)(bool reenter)); /* defined by the plugin */ extern const struct plugin_api *rb; +enum plugin_status plugin_start(const void* parameter); enum plugin_status plugin__start(const void* parameter) NO_PROF_ATTR; |