~bratsche/transmission/notify-actions

« back to all changes in this revision

Viewing changes to gtk/tracker-list.h

  • Committer: Bazaar Package Importer
  • Date: 2008-12-01 20:54:19 UTC
  • Revision ID: jamesw@ubuntu.com-20081201205419-wq3q507uvdr1j027
Tags: upstream-ubuntu-1.40
ImportĀ upstreamĀ versionĀ 1.40

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef TRACKER_LIST_H
2
2
#define TRACKER_LIST_H
3
3
 
4
 
#include <gtk/gtkwidget.h>
 
4
#include <gtk/gtk.h>
5
5
#include "tr-torrent.h"
6
6
 
7
 
GtkWidget* tracker_list_new( TrTorrent * gtor );
 
7
GtkWidget*       tracker_list_new( TrTorrent * gtor );
8
8
 
9
9
/**
10
10
 * @return an array of tr_tracker_info's.  It's the caller's responsibility
13
13
tr_tracker_info* tracker_list_get_trackers( GtkWidget * list,
14
14
                                            int       * trackerCount );
15
15
 
 
16
void tracker_list_add_trackers( GtkWidget             * list,
 
17
                                const tr_tracker_info * trackers,
 
18
                                int                     trackerCount );
 
19
 
16
20
#endif