diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-12-17 21:13:30 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-12-17 21:13:30 +0000 |
| commit | c80e0c19e1b192a384dd8670424bc7dea2831553 (patch) | |
| tree | 20a8106a06c9c926a1125774ba30ec7c2452d80f /apps/plugin.h | |
| parent | 5cc73474633f0f33e0b9f6a55cd8831df9bec906 (diff) | |
| download | rockbox-c80e0c19e1b192a384dd8670424bc7dea2831553.zip rockbox-c80e0c19e1b192a384dd8670424bc7dea2831553.tar.gz rockbox-c80e0c19e1b192a384dd8670424bc7dea2831553.tar.bz2 rockbox-c80e0c19e1b192a384dd8670424bc7dea2831553.tar.xz | |
Fixed several plugins for dB volume.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8258 a1c6a512-1295-4272-9138-f99709370657
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 7f86d54..f935809 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -91,7 +91,7 @@ #endif /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 53 +#define PLUGIN_API_VERSION 54 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -448,6 +448,9 @@ struct plugin_api { unsigned char* (*utf16BEdecode)(const unsigned char *utf16, unsigned char *utf8, unsigned int count); unsigned char* (*utf8encode)(unsigned long ucs, unsigned char *utf8); unsigned long (*utf8length)(const unsigned char *utf8); + + int (*sound_min)(int setting); + int (*sound_max)(int setting); }; int plugin_load(const char* plugin, void* parameter); |