~ubuntu-branches/ubuntu/lucid/gnome-media/lucid

« back to all changes in this revision

Viewing changes to gnome-cd/solaris-cdrom.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2009-07-28 09:49:30 UTC
  • mfrom: (0.1.33 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728094930-2atfxgwqd0wj55ph
Tags: 2.27.5-0ubuntu1
* New upstream release
  - General:
    + vumeter, gnome-cd and cddb-slave have been removed
  - gnome-volume-control
    + Add card and port selection (Bastien Nocera)
    + Excessive CPU usage when trying to reconnect to PulseAudio (Chris Coulson)
    + Many fixes (Bastien Nocera)
  - Updated translations:
    + es (Jorge González)
    + et (Ivar Smolin)
    + fi (Ilkka Tuohela)
    + gu (Sweta Kothari)
    + he (Yaron Shahrabani)
    + hu (Gabor Kelemen)
    + pt_BR (André Gondim)
    + sv (Daniel Nylander)
    + ta (Dr.T.Vasudevan)
    + zh_HK (Chao-Hsiung Liao)
    + zh_TW (Chao-Hsiung Liao)
* debian/rules: Remove configure flags to disable cddb-slave and gnome-cd
* 01_vumeter_nodisplay.patch: Dropped, as vumeter has been removed
* 03_menu_changes.patch: Removed references to gnome-cd and vumeter files
* 99_autoconf.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
 
/*
3
 
 *  Authors: Iain Holmes <iain@ximian.com>
4
 
 *
5
 
 *  Copyright 2001 Iain Holmes
6
 
 *
7
 
 *  This program is free software; you can redistribute it and/or modify
8
 
 *  it under the terms of the GNU General Public License as published by
9
 
 *  the Free Software Foundation; either version 2 of the License, or
10
 
 *  (at your option) any later version.
11
 
 *
12
 
 *  This program is distributed in the hope that it will be useful,
13
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 *  GNU General Public License for more details.
16
 
 *
17
 
 *  You should have received a copy of the GNU General Public License
18
 
 *  along with this program; if not, write to the Free Software
19
 
 *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
20
 
 *
21
 
 */
22
 
 
23
 
#ifndef __SOLARIS_CDROM_H__
24
 
#define __SOLARIS_CDROM_H__
25
 
 
26
 
#include <glib/gerror.h>
27
 
#include <glib-object.h>
28
 
 
29
 
#include "cdrom.h"
30
 
G_BEGIN_DECLS
31
 
 
32
 
#define SOLARIS_CDROM_TYPE (solaris_cdrom_get_type ())
33
 
#define SOLARIS_CDROM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SOLARIS_CDROM_TYPE, SolarisCDRom))
34
 
#define SOLARIS_CDROM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SOLARIS_CDROM_TYPE, SolarisCDRomClass))
35
 
#define IS_SOLARIS_CDROM(obj) (GTK_TYPE_CHECK_INSTANCE_TYPE ((obj), SOLARIS_CDROM_TYPE))
36
 
#define IS_SOLARIS_CDROM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SOLARIS_CDROM_TYPE))
37
 
#define SOLARIS_CDROM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SOLARIS_CDROM_TYPE, SolarisCDRomClass))
38
 
 
39
 
#define CD_FRAMES 75
40
 
 
41
 
typedef struct _SolarisCDRom SolarisCDRom;
42
 
typedef struct _SolarisCDRomPrivate SolarisCDRomPrivate;
43
 
typedef struct _SolarisCDRomClass SolarisCDRomClass;
44
 
 
45
 
struct _SolarisCDRom {
46
 
        GnomeCDRom cdrom;
47
 
 
48
 
        SolarisCDRomPrivate *priv;
49
 
};
50
 
 
51
 
struct _SolarisCDRomClass {
52
 
        GnomeCDRomClass klass;
53
 
};
54
 
 
55
 
GType solaris_cdrom_get_type (void) G_GNUC_CONST;
56
 
 
57
 
G_END_DECLS
58
 
 
59
 
#endif