forked from len0rd/rockbox
Support building tagcache db natively on PC using the core of the
Rockbox tagcache database engine. Only host endian support at the moment and no command line parameters. Mainly for developers for debugging at the moment. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11497 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ae221f1402
commit
0dd7ea2d71
15 changed files with 298 additions and 137 deletions
13
tools/database.c
Normal file
13
tools/database.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
/* A _very_ skeleton file to demonstrate building tagcache db on host. */
|
||||
|
||||
#include <stdio.h>
|
||||
#include "tagcache.h"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
tagcache_init();
|
||||
build_tagcache("/export/stuff/mp3");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue