diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-03-01 14:36:16 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-03-01 14:36:16 +0000 |
| commit | d7f3d1c8ec502f8e89f7f6fe8fb185ea15715928 (patch) | |
| tree | 593c7bc791fb71a32187eb6fec4a03e3b921e1a9 /apps | |
| parent | d94f32883854c070780c837068500e2ec5f408ff (diff) | |
| download | rockbox-d7f3d1c8ec502f8e89f7f6fe8fb185ea15715928.zip rockbox-d7f3d1c8ec502f8e89f7f6fe8fb185ea15715928.tar.gz rockbox-d7f3d1c8ec502f8e89f7f6fe8fb185ea15715928.tar.bz2 rockbox-d7f3d1c8ec502f8e89f7f6fe8fb185ea15715928.tar.xz | |
Added cpu_frequency to the plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6094 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugin.c | 3 | ||||
| -rw-r--r-- | apps/plugin.h | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 6b429c3..63efcb5 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -258,6 +258,9 @@ static const struct plugin_api rockbox_api = { /* new stuff at the end, sort into place next time the API gets incompatible */ +#ifndef SIMULATOR + &cpu_frequency, +#endif }; int plugin_load(const char* plugin, void* parameter) diff --git a/apps/plugin.h b/apps/plugin.h index f2e8621..840d495 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -69,7 +69,7 @@ #endif /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 32 +#define PLUGIN_API_VERSION 33 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -307,6 +307,9 @@ struct plugin_api { /* new stuff at the end, sort into place next time the API gets incompatible */ +#ifndef SIMULATOR + long *cpu_frequency; +#endif }; /* defined by the plugin loader (plugin.c) */ |