From 4574b09685bb3e805aeddad956d524941f47cb37 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Mon, 23 Aug 2010 18:12:07 +0200 Subject: Implemented artist search. --- music.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'music.h') diff --git a/music.h b/music.h index 7a4fe32..c4d3bbf 100644 --- a/music.h +++ b/music.h @@ -5,19 +5,20 @@ #include +struct directory { + gchar *path; + GSList *sub; + GSList *files; +}; + struct file { gchar *name; gssize size; + struct directory *parent; struct tag *tag; }; -struct directory { - gchar *path; - GSList *sub; - GSList *files; -}; - extern struct directory *music_root; gboolean music_init(); -- cgit v1.2.3