Initial commit
[jamendo] / src / jamendo_api.h
diff --git a/src/jamendo_api.h b/src/jamendo_api.h
new file mode 100644 (file)
index 0000000..41eb893
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * jamendo_api.h
+ *
+ *  Created on: 2009-10-05
+ *      Author: marcin
+ */
+
+#ifndef JAMENDO_API_H_
+#define JAMENDO_API_H_
+
+#include <glib.h>
+#include "data_structs.h"
+
+GList* jamendo_get_popular_albums_week();
+
+GList* jamendo_search_for_albums_by_tag(const gchar* tag);
+
+GList* jamendo_search_for_albums_by_artist(const gchar* artist_name);
+
+GList* jamendo_search_for_user_starred_albums(const gchar* user);
+
+GList* jamendo_search_for_user_playlist(const gchar*  user);
+
+GList* jamendo_get_album_tracks(Album* album);
+
+GList* jamendo_get_top_100();
+
+GList* jamendo_get_radios();
+
+GList* jamendo_get_radio_playlist(Radio* radio);
+
+#endif /* JAMENDO_API_H_ */