diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2009-12-24 17:32:22 +0000 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2009-12-24 17:32:22 +0000 |
| commit | 3c3c2aab7496aa4d29f8a70c65c14c1cfe885f1b (patch) | |
| tree | adac4b16619c20b4da5e5731aa2ea4d1b7f3854c /apps/plugin.h | |
| parent | 081da63d097dd5a1de360abd6dcf5c0eb01ecdfc (diff) | |
| download | rockbox-3c3c2aab7496aa4d29f8a70c65c14c1cfe885f1b.zip rockbox-3c3c2aab7496aa4d29f8a70c65c14c1cfe885f1b.tar.gz rockbox-3c3c2aab7496aa4d29f8a70c65c14c1cfe885f1b.tar.bz2 rockbox-3c3c2aab7496aa4d29f8a70c65c14c1cfe885f1b.tar.xz | |
Fix building simulators (at least on linux. cygwin and mingw might need more work)
Also bump the plugin api version
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24110 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 0a9b8a9..7e63c85 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -135,7 +135,7 @@ void* plugin_get_buffer(size_t *buffer_size); #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 178 +#define PLUGIN_API_VERSION 179 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -860,7 +860,9 @@ struct plugin_api { struct viewport *viewport); void (*viewportmanager_theme_undo)(enum screen_type screen, bool force_redraw); #endif +#ifndef SIMULATOR int* __errno; +#endif }; /* plugin header */ |