* Add M3U/PLS music playlist support.

This commit is contained in:
Justin Maggard
2010-01-13 21:15:26 +00:00
parent 4aafa5e4ed
commit 346ff6e293
14 changed files with 412 additions and 30 deletions

19
playlist.h Normal file
View File

@ -0,0 +1,19 @@
/* Playlist handling
*
* Project : minidlna
* Website : http://sourceforge.net/projects/minidlna/
* Author : Justin Maggard
* Copyright (c) 2008-2010 Justin Maggard
* This software is subject to the conditions detailed in the
* LICENCE file provided in this distribution.
* */
#ifndef __PLAYLIST_H__
#define __PLAYLIST_H__
int
insert_playlist(const char * path, char * name);
int
fill_playlists(void);
#endif // __PLAYLIST_H__