/* $Id: low_interface.h,v 1.1 2004/12/18 17:29:32 rocky Exp $ Copyright (C) 2004 Rocky Bernstein Copyright (C) 1998 Monty xiphmont@mit.edu This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /** internal include file for cdda interface kit for Linux */ #ifndef _CDDA_LOW_INTERFACE_ #define _CDDA_LOW_INTERFACE_ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* some include file locations have changed with newer kernels */ #ifdef SBPCD_H #include #endif #ifdef UCDROM_H #include #endif #ifndef CDROMAUDIOBUFSIZ #define CDROMAUDIOBUFSIZ 0x5382 /* set the audio buffer size */ #endif #include #include #include #include #define MAX_RETRIES 8 #define MAX_BIG_BUFF_SIZE 65536 #define MIN_BIG_BUFF_SIZE 4096 #define SG_OFF sizeof(struct sg_header) #ifndef SG_EMULATED_HOST /* old kernel version; the check for the ioctl is still runtime, this is just to build */ #define SG_EMULATED_HOST 0x2203 #define SG_SET_TRANSFORM 0x2204 #define SG_GET_TRANSFORM 0x2205 #endif extern int cooked_init_drive (cdrom_drive_t *d); extern unsigned char *scsi_inquiry (cdrom_drive_t *d); extern int scsi_init_drive (cdrom_drive_t *d); #ifdef CDDA_TEST extern int test_init_drive (cdrom_drive_t *d); #endif #endif /*_CDDA_LOW_INTERFACE_*/