~swem/totem/assignment

« back to all changes in this revision

Viewing changes to src/totem-dvb-setup.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-01-27 09:40:18 UTC
  • mfrom: (1.4.2 upstream) (5.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20100127094018-q6rzt7va0y8ketwt
Tags: 2.29.4-1
* New upstream development release:
  + debian/patches/90_autotools.patch:
    - Refreshed for the new version.
  + debian/control.in:
    - Update build dependencies and dependencies.
    - Drop tracker plugin, it needs tracker 0.7.
  + debian/totem-mozilla.links:
    - Drop the complex plugin, it doesn't exist anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* totem-dvb-setup.h
2
 
 
3
 
   Copyright (C) 2004-2005 Bastien Nocera <hadess@hadess.net>
4
 
 
5
 
   The Gnome Library is free software; you can redistribute it and/or
6
 
   modify it under the terms of the GNU Library General Public License as
7
 
   published by the Free Software Foundation; either version 2 of the
8
 
   License, or (at your option) any later version.
9
 
 
10
 
   The Gnome Library is distributed in the hope that it will be useful,
11
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
   Library General Public License for more details.
14
 
 
15
 
   You should have received a copy of the GNU Library General Public
16
 
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
17
 
   write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18
 
   Boston, MA 02110-1301  USA.
19
 
 
20
 
   Author: Bastien Nocera <hadess@hadess.net>
21
 
 */
22
 
 
23
 
#ifndef TOTEM_DVB_SETUP_H
24
 
#define TOTEM_DVB_SETUP_H
25
 
 
26
 
#include <gtk/gtk.h>
27
 
 
28
 
G_BEGIN_DECLS
29
 
 
30
 
enum {
31
 
        TOTEM_DVB_SETUP_MISSING,
32
 
        TOTEM_DVB_SETUP_STARTED_OK,
33
 
        TOTEM_DVB_SETUP_CRASHED,
34
 
        TOTEM_DVB_SETUP_FAILURE,
35
 
        TOTEM_DVB_SETUP_SUCCESS
36
 
};
37
 
 
38
 
typedef void (*TotemDvbSetupResultFunc) (int result, const char *device, gpointer user_data);
39
 
 
40
 
int totem_dvb_setup_device (const char *device,
41
 
                            GtkWindow *parent,
42
 
                            TotemDvbSetupResultFunc func,
43
 
                            gpointer user_data);
44
 
 
45
 
G_END_DECLS
46
 
 
47
 
#endif /* TOTEM_DVB_SETUP_H */