diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-05-02 21:44:04 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-05-02 21:44:04 +0000 |
| commit | 93ff94949c465f6c41b8f0701240c90f2ae917a4 (patch) | |
| tree | 22a6da60277605a2ebdb4afc3efa7aa77d71f6f1 /apps/plugin.h | |
| parent | 982d995ae9c53ca1732add8a2e383fa527a57a3a (diff) | |
| download | rockbox-93ff94949c465f6c41b8f0701240c90f2ae917a4.zip rockbox-93ff94949c465f6c41b8f0701240c90f2ae917a4.tar.gz rockbox-93ff94949c465f6c41b8f0701240c90f2ae917a4.tar.bz2 rockbox-93ff94949c465f6c41b8f0701240c90f2ae917a4.tar.xz | |
Player: Credits plugin correctly working with UTF-8. Patch by Marcoen Hirschberg.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9862 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 52732c5..8d451d8 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -103,7 +103,7 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 19 +#define PLUGIN_API_VERSION 20 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -514,6 +514,7 @@ struct plugin_api { #ifdef HAVE_LCD_BITMAP void (*lcd_setmargins)(int x, int y); #endif + int (*utf8seek)(const unsigned char* utf8, int offset); }; /* plugin header */ |