Code

mpdclient: moved code to filelist.c
[ncmpc.git] / src / filelist.h
1 /*
2  * (c) 2004 by Kalle Wallin <kaw@linux.se>
3  * (c) 2008 Max Kellermann <max@duempel.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  */
20 #ifndef FILELIST_H
21 #define FILELIST_H
23 #include <glib.h>
25 struct mpd_song;
27 typedef struct filelist_entry {
28         guint flags;
29         struct mpd_InfoEntity *entity;
30 } filelist_entry_t;
32 typedef struct filelist {
33         /* path */
34         gchar *path;
36         /* list length */
37         guint length;
39         /* true if the list is updated */
40         gboolean updated;
42         /* the list */
43         GList *list;
44 } mpdclient_filelist_t;
46 void
47 mpdclient_filelist_free(struct filelist *filelist);
49 struct filelist_entry *
50 mpdclient_filelist_find_song(struct filelist *flist,
51                              const struct mpd_song *song);
53 #endif