~ubuntu-branches/ubuntu/precise/libisoburn/precise

« back to all changes in this revision

Viewing changes to xorriso/filters.h

  • Committer: Bazaar Package Importer
  • Author(s): George Danchev
  • Date: 2011-05-26 16:21:32 UTC
  • mfrom: (9.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20110526162132-9lzoagfaggnera53
Tags: 1.0.8.pl00-4
* [MA] Improve package descriptions and README.Debian.
* [MA] Migrate to format "3.0 (quilt)" and compatibility 8.
  + debian/control: Drop build-dep on 'cdbs'. Require debhelper (>= 8).
  + debian/rules: Reformulate using 'dh'.
  + debian/libisoburn{1,-dev,-doc}.docs: New files.
  + debian/xorriso.docs: Addition of upstream documents.
* [GD] Make sure doxygen documentaton (doc package) is not built
       when dpkg-buildpackage -B is called (i.e. autobuilders).
* [GD] Move doxygen, graphviz to Build-Depends-Indep.
* [GD] Add missing copyrights for debian packaging.
* [GD] Standards-Version: 3.9.2 (no changes needed).
* [GD] More package description and README.Debian improvements;
       thanks to Tony Mancill <tmancill@debian.org>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
 
3
 
 
4
   Copyright 2007-2010 Thomas Schmitt, <scdbackup@gmx.net>
 
5
 
 
6
   Provided under GPL version 2 or later.
 
7
 
 
8
   This file contains declarations of functions which operate on
 
9
   data filter objects.
 
10
*/
 
11
 
 
12
 
 
13
#ifndef Xorriso_pvt_filters_includeD
 
14
#define Xorriso_pvt_filters_includeD yes
 
15
 
 
16
int Xorriso_extf_new(struct XorrisO *xorriso, struct Xorriso_extF **filter,
 
17
                     char *path, int argc, char **argv, int behavior,
 
18
                     char *suffix, char *name, int flag);
 
19
 
 
20
int Xorriso_extf_destroy(struct XorrisO *xorriso, struct Xorriso_extF **filter,
 
21
                         int flag);
 
22
 
 
23
int Xorriso_lookup_extf(struct XorrisO *xorriso, char *name,
 
24
                        struct Xorriso_lsT **found_lst, int flag);
 
25
 
 
26
int Xorriso_rename_suffix(struct XorrisO *xorriso, IsoNode *node, char *suffix,
 
27
                          char *show_path, char new_name[], int flag);
 
28
 
 
29
 
 
30
#endif /* ! Xorriso_pvt_filters_includeD */
 
31