2010-03-15 02:53:31 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2012-2014 Mnemosyne LLC
|
2010-03-15 02:53:31 +00:00
|
|
|
*
|
2014-01-19 01:09:44 +00:00
|
|
|
* It may be used under the GNU Public License v2 or v3 licenses,
|
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2010-03-15 02:53:31 +00:00
|
|
|
*
|
2010-03-16 00:45:12 +00:00
|
|
|
* $Id$
|
2010-03-15 02:53:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GTR_FAVICON_CACHE_H
|
|
|
|
#define GTR_FAVICON_CACHE_H
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void gtr_get_favicon (tr_session * session,
|
2010-04-23 01:46:02 +00:00
|
|
|
const char * host,
|
|
|
|
GFunc pixbuf_ready_func,
|
2012-12-05 17:29:46 +00:00
|
|
|
gpointer pixbuf_ready_func_data);
|
2010-04-23 01:46:02 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void gtr_get_favicon_from_url (tr_session * session,
|
2010-04-23 01:46:02 +00:00
|
|
|
const char * url,
|
|
|
|
GFunc pixbuf_ready_func,
|
2012-12-05 17:29:46 +00:00
|
|
|
gpointer pixbuf_ready_func_data);
|
2010-04-23 01:46:02 +00:00
|
|
|
|
2010-03-15 02:53:31 +00:00
|
|
|
|
|
|
|
#endif
|