21 lines
477 B
C
21 lines
477 B
C
/*
|
|
* This file Copyright (C) 2009-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef GTK_TORRENT_FILE_LIST_H
|
|
#define GTK_TORRENT_FILE_LIST_H
|
|
|
|
#include <gtk/gtk.h>
|
|
#include "tr-core.h"
|
|
|
|
GtkWidget * gtr_file_list_new (TrCore *, int torrent_id);
|
|
void gtr_file_list_clear (GtkWidget *);
|
|
void gtr_file_list_set_torrent (GtkWidget *, int torrent_id);
|
|
|
|
#endif
|