summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-03-26 11:33:42 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-03-26 11:33:42 +0000
commit7c4e0c8730d5b076d4db4206361bc38d5256a23f (patch)
tree43382ae25de9bfa0bbabdff7d51c32b651ad47b5 /apps/plugin.h
parent50d40ea43409745bc828e56af5e3879ea6b48cf1 (diff)
downloadrockbox-7c4e0c8730d5b076d4db4206361bc38d5256a23f.tar.gz
rockbox-7c4e0c8730d5b076d4db4206361bc38d5256a23f.zip
Initial version of tagcache! There are still some bugs in the engine
and much more problems with the UI. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9256 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 6584dbeed7..99dd3dc6ea 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -99,12 +99,12 @@
99#define PLUGIN_MAGIC 0x526F634B /* RocK */ 99#define PLUGIN_MAGIC 0x526F634B /* RocK */
100 100
101/* increase this every time the api struct changes */ 101/* increase this every time the api struct changes */
102#define PLUGIN_API_VERSION 13 102#define PLUGIN_API_VERSION 14
103 103
104/* update this to latest version if a change to the api struct breaks 104/* update this to latest version if a change to the api struct breaks
105 backwards compatibility (and please take the opportunity to sort in any 105 backwards compatibility (and please take the opportunity to sort in any
106 new function which are "waiting" at the end of the function table) */ 106 new function which are "waiting" at the end of the function table) */
107#define PLUGIN_MIN_API_VERSION 13 107#define PLUGIN_MIN_API_VERSION 14
108 108
109/* plugin return codes */ 109/* plugin return codes */
110enum plugin_status { 110enum plugin_status {
@@ -387,16 +387,6 @@ struct plugin_api {
387#endif 387#endif
388#endif 388#endif
389 389
390 /* tag database */
391 struct tagdb_header *tagdbheader;
392 int *tagdb_fd;
393 int *tagdb_initialized;
394 int (*tagdb_init) (void);
395 /* runtime database */
396 struct rundb_header *rundbheader;
397 int *rundb_fd;
398 int *rundb_initialized;
399
400 /* menu */ 390 /* menu */
401 int (*menu_init)(const struct menu_item* mitems, int count, 391 int (*menu_init)(const struct menu_item* mitems, int count,
402 int (*callback)(int, int), 392 int (*callback)(int, int),