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

« back to all changes in this revision

Viewing changes to xorriso/drive_mgt.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 drives
 
9
   and media.
 
10
*/
 
11
 
 
12
 
 
13
#ifndef Xorriso_pvt_drive_mgt_includeD
 
14
#define Xorriso_pvt_drive_mgt_includeD yes
 
15
 
 
16
 
 
17
int Xorriso_may_burn(struct XorrisO *xorriso, int flag);
 
18
 
 
19
int Xorriso_toc_line(struct XorrisO *xorriso, int flag);
 
20
 
 
21
int Xorriso_media_product(struct XorrisO *xorriso, int flag);
 
22
 
 
23
int Xorriso_check_md5_range(struct XorrisO *xorriso, off_t start_lba,
 
24
                            off_t end_lba, char md5[16], int flag);
 
25
 
 
26
int Xorriso_check_interval(struct XorrisO *xorriso, struct SpotlisT *spotlist,
 
27
                           struct CheckmediajoB *job,
 
28
                           int from_lba, int block_count, int read_chunk,
 
29
                           int md5_start, int flag);
 
30
 
 
31
int Xorriso_get_drive_handles(struct XorrisO *xorriso,
 
32
                              struct burn_drive_info **dinfo,
 
33
                              struct burn_drive **drive,
 
34
                              char *attempt, int flag);
 
35
 
 
36
int Xorriso_check_for_abort(struct XorrisO *xorriso,
 
37
                            char *abort_file_path,
 
38
                            double post_read_time,
 
39
                            double *last_abort_file_time, int flag);
 
40
 
 
41
#endif /* ! Xorriso_pvt_drive_mgt_includeD */
 
42