diff options
| author | Hardeep Sidhu <dyp@pobox.com> | 2006-05-05 07:01:43 +0000 |
|---|---|---|
| committer | Hardeep Sidhu <dyp@pobox.com> | 2006-05-05 07:01:43 +0000 |
| commit | a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed (patch) | |
| tree | c687f3549c8056390820a9e9b36978b725b376ca /apps/tagtree.h | |
| parent | b9615514bf861a94774fe05dd7a3eeb6bd006ac2 (diff) | |
| download | rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.zip rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.tar.gz rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.tar.bz2 rockbox-a85b23fa5bf8a56ca41adbf9fd53f52dc5ec2eed.tar.xz | |
Enabled playlist functions on tracks in tagcache
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9877 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.h')
| -rw-r--r-- | apps/tagtree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tagtree.h b/apps/tagtree.h index c1010ec..81d900b 100644 --- a/apps/tagtree.h +++ b/apps/tagtree.h @@ -35,12 +35,12 @@ int tagtree_enter(struct tree_context* c); void tagtree_exit(struct tree_context* c); int tagtree_load(struct tree_context* c); struct tagentry* tagtree_get_entry(struct tree_context *c, int id); +int tagtree_get_attr(struct tree_context* c); #ifdef HAVE_LCD_BITMAP -const char* tagtree_get_icon(struct tree_context* c); +const unsigned char* tagtree_get_icon(struct tree_context* c); #else int tagtree_get_icon(struct tree_context* c); #endif int tagtree_get_filename(struct tree_context* c, char *buf, int buflen); #endif - |