Added cpu_frequency to the plugin API

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6094 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-03-01 14:36:16 +00:00
parent d94f328838
commit d7f3d1c8ec
2 changed files with 7 additions and 1 deletions

View file

@ -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)

View file

@ -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) */