2008-06-01 05:36:23 +00:00
|
|
|
#ifndef TRACKER_LIST_H
|
|
|
|
#define TRACKER_LIST_H
|
|
|
|
|
|
|
|
#include <gtk/gtkwidget.h>
|
|
|
|
#include "tr-torrent.h"
|
|
|
|
|
2008-06-02 15:07:26 +00:00
|
|
|
GtkWidget* tracker_list_new( TrTorrent * gtor );
|
|
|
|
|
2008-06-01 05:36:23 +00:00
|
|
|
/**
|
|
|
|
* @return an array of tr_tracker_info's. It's the caller's responsibility
|
|
|
|
* to g_free() every announce in the array, then the array itself.
|
|
|
|
*/
|
|
|
|
tr_tracker_info* tracker_list_get_trackers( GtkWidget * list,
|
|
|
|
int * trackerCount );
|
|
|
|
|
|
|
|
#endif
|