Cleanup.
[jamendo] / src / jamendo_api.h
1 /*
2  * jamendo_api.h
3  *
4  *  Created on: 2009-10-05
5  *      Author: marcin
6  */
7
8 #ifndef JAMENDO_API_H_
9 #define JAMENDO_API_H_
10
11 #include <glib.h>
12 #include "data_structs.h"
13
14 GList* jamendo_get_popular_albums_week();
15
16 GList* jamendo_search_for_albums_by_tag(const gchar* tag);
17
18 GList* jamendo_search_for_albums_by_artist(const gchar* artist_name);
19
20 GList* jamendo_search_for_user_starred_albums(const gchar* user);
21
22 GList* jamendo_search_for_user_playlist(const gchar*  user);
23
24 GList* jamendo_get_album_tracks(Album* album);
25
26 GList* jamendo_get_top_100();
27
28 GList* jamendo_get_radios();
29
30 GList* jamendo_get_radio_playlist(Radio* radio);
31
32 #endif /* JAMENDO_API_H_ */