add support for lyricsplugin database

This commit is contained in:
Andrzej Rybczak
2009-02-02 12:00:19 +01:00
parent e59b14c56d
commit 6217bf04c2
5 changed files with 86 additions and 13 deletions

View File

@@ -27,6 +27,15 @@
# include <pthread.h>
# include "curl/curl.h"
void * GetArtistInfo(void *);
struct LyricsPlugin
{
const char *url;
const char *tag_open;
const char *tag_close;
bool (*not_found)(const string &);
};
#endif
void * GetLyrics(void *);