diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-07-01 17:29:44 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-07-01 17:29:44 +0000 |
| commit | c735ed79142a0260fc05d58cb0672e5d1720a26a (patch) | |
| tree | 3fd67eb9fb598e9b8bc0c3003ec3bf037379ebb4 /apps/plugin.c | |
| parent | 4ec80704d5f34a167d45db7539f47b12cc23c59e (diff) | |
| download | rockbox-c735ed79142a0260fc05d58cb0672e5d1720a26a.zip rockbox-c735ed79142a0260fc05d58cb0672e5d1720a26a.tar.gz rockbox-c735ed79142a0260fc05d58cb0672e5d1720a26a.tar.bz2 rockbox-c735ed79142a0260fc05d58cb0672e5d1720a26a.tar.xz | |
First runtime database support, self repairing, only playcount works for now,
which is still rather crude; playcount gets increased even if the song started playback but was skipped... track rating should be trivial to add, autorating also works since its based on playcount.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6969 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index e51a00c..c92813d 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -329,6 +329,9 @@ static const struct plugin_api rockbox_api = { #ifdef ROCKBOX_HAS_LOGF logf, #endif + &rundbheader, + &rundb_fd, + &rundb_initialized, strncmp, }; |