From 9369d4867d3bf033e0e3bbcff05cd7f0a9bb83e8 Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Thu, 28 Apr 2005 12:33:38 +0000 Subject: Search engine core for database v2, has an hardcoded "songs for year >= 1980 and year < 1990" at the moment. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6367 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'apps/plugin.h') diff --git a/apps/plugin.h b/apps/plugin.h index 0bb57b2..2604cae 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -78,7 +78,7 @@ #endif /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 38 +#define PLUGIN_API_VERSION 39 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -375,6 +375,11 @@ struct plugin_api { int (*read_bmp_file)(char* filename, int *get_width, int *get_height, char *bitmap, int maxsize); #endif + struct tagdb_header *tagdbheader; + int *tagdb_fd; + int *tagdb_initialized; + int (*tagdb_init) (void); + char *(*strcasestr) (const char* phaystack, const char* pneedle); }; /* defined by the plugin loader (plugin.c) */ -- cgit v1.1