~ubuntu-branches/ubuntu/precise/transmission/precise

« back to all changes in this revision

Viewing changes to gtk/file-list.h

  • Committer: Bazaar Package Importer
  • Author(s): Leo Costela
  • Date: 2009-05-17 19:39:51 UTC
  • mto: (1.3.4 upstream) (2.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: james.westby@ubuntu.com-20090517193951-k8x15sqoxzf7cuyx
ImportĀ upstreamĀ versionĀ 1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: file-list.h 5126 2008-02-26 21:08:51Z charles $
 
2
 * $Id: file-list.h 8279 2009-04-24 01:37:04Z charles $
3
3
 *
4
4
 * Copyright (c) 2005-2008 Transmission authors and contributors
5
5
 *
25
25
#ifndef GTK_TORRENT_FILE_LIST_H
26
26
#define GTK_TORRENT_FILE_LIST_H
27
27
 
28
 
#include <gtk/gtkwidget.h>
29
 
#include "tr-torrent.h"
30
 
 
31
 
/* create a new file list */
32
 
GtkWidget * file_list_new( TrTorrent * );
33
 
 
34
 
void file_list_set_torrent( GtkWidget *, TrTorrent * );
 
28
#include <gtk/gtk.h>
 
29
#include "tr-core.h"
 
30
 
 
31
GtkWidget * file_list_new( TrCore *, int torrentId );
 
32
 
 
33
void        file_list_clear( GtkWidget * );
 
34
 
 
35
void        file_list_set_torrent( GtkWidget *, int torrentId );
35
36
 
36
37
#endif