diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-03-20 23:05:44 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-03-20 23:05:44 +0000 |
| commit | 457e138fffa060e6199c53ec929cd97dfb42464c (patch) | |
| tree | 9ecde4be891dd964cb61c7b84788b22b99defbe3 /apps/plugin.h | |
| parent | 3b8dcf5ebbc1e8f53ff17eb769e553cf01a63655 (diff) | |
| download | rockbox-457e138fffa060e6199c53ec929cd97dfb42464c.zip rockbox-457e138fffa060e6199c53ec929cd97dfb42464c.tar.gz rockbox-457e138fffa060e6199c53ec929cd97dfb42464c.tar.bz2 rockbox-457e138fffa060e6199c53ec929cd97dfb42464c.tar.xz | |
Added new pcm playback api to the plugin api
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6217 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 1cdbd61..496a69a 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -69,7 +69,7 @@ #endif /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 36 +#define PLUGIN_API_VERSION 37 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -317,6 +317,10 @@ struct plugin_api { #if CONFIG_KEYPAD == IRIVER_H100_PAD bool (*button_hold)(void); #endif + void (*pcm_play_data)(const unsigned char *start, int size, + void (*get_more)(unsigned char** start, long*size)); + void (*pcm_play_stop)(void); + bool (*pcm_is_playing)(void); }; /* defined by the plugin loader (plugin.c) */ |