Cleanup.
[jamendo] / src / http_utils.h
1 /*
2  * http_utils.h
3  *
4  *  Created on: 2009-12-18
5  *      Author: marcin
6  */
7
8 #ifndef HTTP_UTILS_H_
9 #define HTTP_UTILS_H_
10
11 #include <libxml/tree.h>
12 #include <gdk-pixbuf/gdk-pixbuf.h>
13 #include <gio/gio.h>
14
15 /*
16  * Helper functions for accessing HTTP
17  */
18 xmlDocPtr http_get_xml(const gchar* uri);
19
20 GdkPixbuf* http_get_image(const gchar* uri, gint width, gint height);
21
22 #endif /* HTTP_UTILS_H_ */