make fetching lyrics and artist's info work in background

This commit is contained in:
unK
2008-09-27 20:33:30 +02:00
parent de70c6ceff
commit d61cb54653
4 changed files with 153 additions and 77 deletions

View File

@@ -25,12 +25,13 @@
#include <fstream>
#ifdef HAVE_CURL_CURL_H
# include <pthread.h>
# include "curl/curl.h"
string GetArtistInfo(string);
void * GetArtistInfo(void *);
#endif
void EscapeHtml(string &);
string GetLyrics(string, string);
void * GetLyrics(void *);
#endif