2010-03-15 02:53:31 +00:00
|
|
|
/*
|
2011-01-19 13:48:47 +00:00
|
|
|
* This file Copyright (C) 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
|
2010-03-15 02:53:31 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
|
|
* 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>
|
|
|
|
|
2010-04-23 01:46:02 +00:00
|
|
|
void gtr_get_favicon( tr_session * session,
|
|
|
|
const char * host,
|
|
|
|
GFunc pixbuf_ready_func,
|
|
|
|
gpointer pixbuf_ready_func_data );
|
|
|
|
|
|
|
|
void gtr_get_favicon_from_url( tr_session * session,
|
|
|
|
const char * url,
|
|
|
|
GFunc pixbuf_ready_func,
|
|
|
|
gpointer pixbuf_ready_func_data );
|
|
|
|
|
2010-03-15 02:53:31 +00:00
|
|
|
|
|
|
|
#endif
|