1/* Playlist handling
2 *
3 * Project : minidlna
4 * Website : http://sourceforge.net/projects/minidlna/
5 * Author  : Justin Maggard
6 * Copyright (c) 2008-2010 Justin Maggard
7 * This software is subject to the conditions detailed in the
8 * LICENCE file provided in this distribution.
9 * */
10#ifndef __PLAYLIST_H__
11#define __PLAYLIST_H__
12
13int
14insert_playlist(const char * path, char * name);
15
16int
17fill_playlists(void);
18
19#endif // __PLAYLIST_H__
20