diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 5 |
1 files changed, 4 insertions, 1 deletions
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) */ |