~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to plugins/growisofs/burn-growisofs-common.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-06-03 10:36:30 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20090603103630-2r72408gk45sc0ws
Tags: 2.27.2-0ubuntu1
* New upstream release (LP: #380850)
  - Split burning backend into a new library called libbrasero-burn
  - Split some utilities into a new library called libbrasero-utils
  - Use Brasero as a single instance application using libunique
  - Data spanning
  - Memleak fixes
  - Bug Fixes
  - String fixes
  - Use autogenerated Changelog via git
  - Translation Updates
  - Fixes (LP: #360671)
* Bump GTK+ requirement and add libunique requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *            burn-growisofs-common.h
 
3
 *
 
4
 *  Mon Oct 29 12:37:28 2007
 
5
 *  Copyright  2007  Philippe Rouquier
 
6
 *  <bonfire-app@wanadoo.fr>
 
7
 ****************************************************************************/
 
8
 
 
9
/*
 
10
 * Libbrasero-media is free software; you can redistribute it and/or modify
 
11
fy
 
12
 * it under the terms of the GNU General Public License as published by
 
13
 * the Free Software Foundation; either version 2 of the License, or
 
14
 * (at your option) any later version.
 
15
 * 
 
16
 * Brasero is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
 * GNU Library General Public License for more details.
 
20
 * 
 
21
 * You should have received a copy of the GNU General Public License
 
22
 * along with this program; if not, write to the Free Software
 
23
 * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
 
24
 */
 
25
 
 
26
#ifndef _BURN_GROWISOFS_COMMON_H
 
27
#define _BURN_GROWISOFS_COMMON_H
 
28
 
 
29
#include <glib.h>
 
30
 
 
31
G_BEGIN_DECLS
 
32
 
 
33
#define GROWISOFS_DESCRIPTION           N_("Growisofs burning suite")
 
34
 
 
35
G_END_DECLS
 
36
 
 
37
#endif /* _BURN_GROWISOFS_COMMON_H */
 
38
 
 
39