diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-03-11 15:44:35 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-03-11 15:44:35 +0000 |
| commit | a814584c87fef79038f6b0f311cfc70fb51d1b95 (patch) | |
| tree | 4df31679017735c7fa64b32ae78ec3ad078271ae /apps/plugin.h | |
| parent | 1246668a7807f1f5b9253ad7f9a682fb6b2ff7dd (diff) | |
| download | rockbox-a814584c87fef79038f6b0f311cfc70fb51d1b95.zip rockbox-a814584c87fef79038f6b0f311cfc70fb51d1b95.tar.gz rockbox-a814584c87fef79038f6b0f311cfc70fb51d1b95.tar.bz2 rockbox-a814584c87fef79038f6b0f311cfc70fb51d1b95.tar.xz | |
pacbox - a Pacman arcade machine emulator. Currently working for all colour targets and the iriver H1x0. Requires the Pacman arcade machine ROMs in /.rockbox/pacman/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9001 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index df23ed1..9ebe31f 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -99,7 +99,7 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 11 +#define PLUGIN_API_VERSION 12 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -476,6 +476,16 @@ struct plugin_api { /* new stuff at the end, sort into place next time the API gets incompatible */ +#if CONFIG_KEYPAD == IRIVER_H300_PAD || CONFIG_KEYPAD == IPOD_4G_PAD + /* NOTE: This is already in the plugin api for the H100 - but we put it + at the end for other targets to keep the plugin api compatible */ + bool (*button_hold)(void); +#endif + /* options */ + bool (*set_option)(const char* string, void* variable, + enum optiontype type, const struct opt_items* options, + int numoptions, void (*function)(int)); + }; /* plugin header */ |