From effceea22915a087c1c85ff30d2e62110413edaf Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Thu, 23 Oct 2008 13:13:00 +0000 Subject: Remove the event object in the kernel since it's rather extraneous at the moment. This makes the codecs and the plugins incompatible, so update fully. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18867 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'apps/codecs.h') diff --git a/apps/codecs.h b/apps/codecs.h index 6d8c1016a8..4194524e6d 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -82,12 +82,12 @@ #define CODEC_ENC_MAGIC 0x52454E43 /* RENC */ /* increase this every time the api struct changes */ -#define CODEC_API_VERSION 26 +#define CODEC_API_VERSION 27 /* 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 CODEC_MIN_API_VERSION 26 +#define CODEC_MIN_API_VERSION 27 /* codec return codes */ enum codec_status { @@ -175,9 +175,6 @@ struct codec_api { void (*semaphore_init)(struct semaphore *s, int max, int start); void (*semaphore_wait)(struct semaphore *s); void (*semaphore_release)(struct semaphore *s); - void (*event_init)(struct event *e, unsigned int flags); - void (*event_wait)(struct event *e, unsigned int for_state); - void (*event_set_state)(struct event *e, unsigned int state); #endif /* NUM_CORES */ #ifdef CACHE_FUNCTIONS_AS_CALL -- cgit v1.2.3