cdrom.h
author nathan
Sat, 29 Dec 2007 15:28:06 +0100
branchtrunk
changeset 8 a306b5e43b44
parent 4 79da91042fcc
child 15 a9348bf5f6e7
permissions -rw-r--r--
release 0.7.0
     1 /* cdrom.h
     2 Copyright (c) 2000-2004 Craig Condit, Stefan Hülswitt.
     3 
     4 Redistribution and use in source and binary forms, with or without
     5 modification, are permitted provided that the following conditions are met: 
     6 
     7 1. Redistributions of source code must retain the above copyright notice,
     8    this list of conditions and the following disclaimer. 
     9 2. Redistributions in binary form must reproduce the above copyright notice,
    10    this list of conditions and the following disclaimer in the documentation
    11    and/or other materials provided with the distribution. 
    12 
    13 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
    14 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    15 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    16 DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
    17 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    18 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    19 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    20 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    21 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    22 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    23 SUCH DAMAGE.
    24 */
    25 
    26 #ifndef _CDBACKUP_CDROM_H
    27 #define _CDBACKUP_CDROM_H
    28 
    29 #ifdef linux
    30 #include <linux/cdrom.h>
    31 #endif
    32 
    33 #ifdef sun
    34 #include <sys/cdio.h>
    35 #endif
    36 
    37 #ifndef CD_FRAMESIZE
    38 #define CD_FRAMESIZE 2048
    39 #endif
    40 
    41 struct cd_header {
    42   int start_track, end_track;
    43   int used;
    44   };
    45 
    46 struct cd_track {
    47   int start_sec;
    48   int leadout_size;
    49   int is_data;
    50   int start_track;
    51   };
    52 
    53 void get_param(int fd, unsigned long *ahead, unsigned long *fahead);
    54 void set_param(int fd, unsigned long ahead, unsigned long fahead);
    55 int getCdHeader(struct cd_header *cd);
    56 void getCdTrack(int num, struct cd_track *cd);
    57 
    58 #endif