2010-03-15 02:53:31 +00:00
|
|
|
/*
|
2014-01-18 20:56:57 +00:00
|
|
|
* This file Copyright (C) 2010-2014 Mnemosyne LLC
|
2010-03-15 02:53:31 +00:00
|
|
|
*
|
2010-12-27 19:18:17 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
2012-12-05 17:29:46 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2 (b)
|
2010-03-15 02:53:31 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
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
|