comparison src/util.h @ 9284:fe0291162312

[gaim-migrate @ 10087] Yahoo "picture" buddy icon support. It still kind of sucks, and you can't set your own yet. But expect it to improve. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Tue, 15 Jun 2004 01:17:16 +0000
parents 185fbd8b5998
children 2138b3a07cb8
comparison
equal deleted inserted replaced
9283:66ff39319900 9284:fe0291162312
608 * Fetches the data from a URL, and passes it to a callback function. 608 * Fetches the data from a URL, and passes it to a callback function.
609 * 609 *
610 * @param url The URL. 610 * @param url The URL.
611 * @param full TRUE if this is the full URL, or FALSE if it's a 611 * @param full TRUE if this is the full URL, or FALSE if it's a
612 * partial URL. 612 * partial URL.
613 * @param user_agent The user agent field to use, or NULL.
614 * @param http11 TRUE if HTTP/1.1 should be used to download the file.
613 * @param cb The callback function. 615 * @param cb The callback function.
614 * @param data The user data to pass to the callback function. 616 * @param data The user data to pass to the callback function.
615 * @param user_agent The user agent field to use, or NULL.
616 * @param http11 TRUE if HTTP/1.1 should be used to download the file.
617 */ 617 */
618 void gaim_url_fetch(const char *url, gboolean full, 618 void gaim_url_fetch(const char *url, gboolean full,
619 const char *user_agent, gboolean http11, 619 const char *user_agent, gboolean http11,
620 void (*cb)(void *, const char *, size_t), 620 void (*cb)(void *, const char *, size_t),
621 void *data); 621 void *data);