diff options
| author | Hristo Kovachev <bger@rockbox.org> | 2006-01-25 18:29:56 +0000 |
|---|---|---|
| committer | Hristo Kovachev <bger@rockbox.org> | 2006-01-25 18:29:56 +0000 |
| commit | 495c63f867a35ac2e6aab92a530a46b3ef5143b1 (patch) | |
| tree | 24c4188728a3e1c5196506eab29978f5e5c4ac49 /apps/plugin.h | |
| parent | 4781f1461fd7d3f91bea4ff84ca20b5e58ff53e3 (diff) | |
| download | rockbox-495c63f867a35ac2e6aab92a530a46b3ef5143b1.zip rockbox-495c63f867a35ac2e6aab92a530a46b3ef5143b1.tar.gz rockbox-495c63f867a35ac2e6aab92a530a46b3ef5143b1.tar.bz2 rockbox-495c63f867a35ac2e6aab92a530a46b3ef5143b1.tar.xz | |
New "battery benchmark" plugin by Alexander Spyridakis, modified a bit by me
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8451 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 157831b..747c9e0 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -37,6 +37,7 @@ #include "dir.h" #include "kernel.h" #include "button.h" +#include "usb.h" #include "font.h" #include "system.h" #include "lcd.h" @@ -96,7 +97,7 @@ #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 2 +#define PLUGIN_API_VERSION 3 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -427,13 +428,23 @@ struct plugin_api { /* new stuff at the end, sort into place next time the API gets incompatible */ + #ifdef RB_PROFILE void (*profile_thread)(void); void (*profstop)(void); void (*profile_func_enter)(void *this_fn, void *call_site); void (*profile_func_exit)(void *this_fn, void *call_site); #endif - + int (*battery_time)(void); +#ifndef SIMULATOR + bool (*ata_disk_is_active)(void); + unsigned int (*battery_voltage)(void); +#endif + void (*queue_init)(struct event_queue *q); + void (*queue_delete)(struct event_queue *q); + void (*queue_post)(struct event_queue *q, long id, void *data); + void (*queue_wait_w_tmo)(struct event_queue *q, struct event *ev, int ticks); + void (*usb_acknowledge)(long id); }; /* plugin header */ |