diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-04-13 12:24:47 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-04-13 12:24:47 +0000 |
| commit | 2bf4178018930b8af6d7082f7dd1a3302e09932b (patch) | |
| tree | 3f6e2177e31f09157fc782d4239b944a6f6d8963 /apps/plugin.h | |
| parent | 4c5a735a023755cedc264a4cad89f1ab0c256e17 (diff) | |
| download | rockbox-2bf4178018930b8af6d7082f7dd1a3302e09932b.zip rockbox-2bf4178018930b8af6d7082f7dd1a3302e09932b.tar.gz rockbox-2bf4178018930b8af6d7082f7dd1a3302e09932b.tar.bz2 rockbox-2bf4178018930b8af6d7082f7dd1a3302e09932b.tar.xz | |
Make mpegplayer sleep the disk after buffering to save battery. * Add a simulator stub for ata_sleep(), and un-ifdef most calls to it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17096 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index c638688..2db38ed 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -120,12 +120,12 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 107 +#define PLUGIN_API_VERSION 108 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any new function which are "waiting" at the end of the function table) */ -#define PLUGIN_MIN_API_VERSION 107 +#define PLUGIN_MIN_API_VERSION 108 /* plugin return codes */ enum plugin_status { @@ -331,8 +331,8 @@ struct plugin_api { int (*fdprintf)(int fd, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3); int (*read_line)(int fd, char* buffer, int buffer_size); bool (*settings_parseline)(char* line, char** name, char** value); -#ifndef SIMULATOR void (*ata_sleep)(void); +#ifndef SIMULATOR bool (*ata_disk_is_active)(void); #endif void (*ata_spin)(void); |