From 5ad21d347a499ad09fc0e1269e9abc5cad6158a9 Mon Sep 17 00:00:00 2001 From: amiconn Date: Sun, 17 Sep 2006 22:20:05 +0000 Subject: [PATCH] Solitaire: * Button assignments: Better layout for ipods, allowing one-handed operation during the game. More logical shortcut buttons for Ondios. Slight changes for other targets, including working button repeat for up/down when there is no dual use. * Help text showing all possible buttons instead of forcing the user to try and find out. The text adapts to LCD resolution and selected font. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10985 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.c | 2 ++ apps/plugin.h | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/plugin.c b/apps/plugin.c index 9ffb98030..04a4d1c73 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -466,6 +466,8 @@ static const struct plugin_api rockbox_api = { /* new stuff at the end, sort into place next time the API gets incompatible */ + + strtok_r, }; int plugin_load(const char* plugin, void* parameter) diff --git a/apps/plugin.h b/apps/plugin.h index b89dfd0d8..b0221c489 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -105,7 +105,7 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 30 +#define PLUGIN_API_VERSION 31 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -545,6 +545,8 @@ struct plugin_api { /* new stuff at the end, sort into place next time the API gets incompatible */ + + char* (*strtok_r)(char *ptr, const char *sep, char **end); }; /* plugin header */ -- 2.11.4.GIT