cdrom.h
branchtrunk
changeset 0 d85c12073dea
child 2 6bcb44b9edb1
equal deleted inserted replaced
-1:000000000000 0:d85c12073dea
       
     1 /* cdrom.h
       
     2 Copyright (c) 2000-2002 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 extern struct toc_entry *toc;
       
    30 extern long long cd_used, cd_avail;
       
    31 
       
    32 int open_cdr(char *device);
       
    33 void close_cdr(int cd_fd);
       
    34 int full_read(int fd, void *buf, int count);
       
    35 int read_toc(int cd_fd, int trackinfos);
       
    36 void free_toc();
       
    37 void print_space();
       
    38 
       
    39 #endif