diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-12-19 16:50:07 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-12-19 16:50:07 +0000 |
| commit | 4b902679cc5fcca7f4e8d83b25112754f7903736 (patch) | |
| tree | 7853f7d80a4254f521107c2c6e7191d3a1e1974e /apps/plugin.h | |
| parent | d152b6492a2371c261c195494864c3744609cf3c (diff) | |
| download | rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.zip rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.tar.gz rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.tar.bz2 rockbox-4b902679cc5fcca7f4e8d83b25112754f7903736.tar.xz | |
Convert queues to use intptr_t for event data and return values as most of the time pointer are not passed and it should make some things a bit cleaner.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11818 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 5b5215f..6fad78e 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -354,7 +354,7 @@ struct plugin_api { #endif void (*queue_init)(struct event_queue *q, bool register_queue); void (*queue_delete)(struct event_queue *q); - void (*queue_post)(struct event_queue *q, long id, void *data); + void (*queue_post)(struct event_queue *q, long id, intptr_t data); void (*queue_wait_w_tmo)(struct event_queue *q, struct event *ev, int ticks); void (*usb_acknowledge)(long id); |