cdio.{c,h}: update initializations for get_devices.
This commit is contained in:
1
NEWS
1
NEWS
@@ -11,6 +11,7 @@
|
|||||||
for plugins that want to find a CD-DA to play or find a plugin that handles
|
for plugins that want to find a CD-DA to play or find a plugin that handles
|
||||||
a particular device.
|
a particular device.
|
||||||
- Start Darwin driver.
|
- Start Darwin driver.
|
||||||
|
- BSDI fixes
|
||||||
|
|
||||||
0.63
|
0.63
|
||||||
- create libiso9660 library and install that.
|
- create libiso9660 library and install that.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* -*- c -*-
|
/* -*- c -*-
|
||||||
$Id: cdio.h,v 1.28 2003/10/03 01:12:23 rocky Exp $
|
$Id: cdio.h,v 1.29 2003/10/03 02:36:52 rocky Exp $
|
||||||
|
|
||||||
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
|
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
|
||||||
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
|
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
|
||||||
@@ -392,6 +392,8 @@ extern "C" {
|
|||||||
|
|
||||||
char * cdio_get_default_device_solaris(void);
|
char * cdio_get_default_device_solaris(void);
|
||||||
|
|
||||||
|
char **cdio_get_devices_solaris(void);
|
||||||
|
|
||||||
/*! Darwin OS X CD-reading routines.
|
/*! Darwin OS X CD-reading routines.
|
||||||
NULL is returned on error.
|
NULL is returned on error.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
$Id: _cdio_bincue.c,v 1.34 2003/10/02 02:59:58 rocky Exp $
|
$Id: _cdio_bincue.c,v 1.35 2003/10/03 02:36:52 rocky Exp $
|
||||||
|
|
||||||
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
|
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
|
||||||
Copyright (C) 2002,2003 Rocky Bernstein <rocky@panix.com>
|
Copyright (C) 2002,2003 Rocky Bernstein <rocky@panix.com>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
(*.cue).
|
(*.cue).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static const char _rcsid[] = "$Id: _cdio_bincue.c,v 1.34 2003/10/02 02:59:58 rocky Exp $";
|
static const char _rcsid[] = "$Id: _cdio_bincue.c,v 1.35 2003/10/03 02:36:52 rocky Exp $";
|
||||||
|
|
||||||
#include "cdio_assert.h"
|
#include "cdio_assert.h"
|
||||||
#include "cdio_private.h"
|
#include "cdio_private.h"
|
||||||
@@ -43,6 +43,9 @@ static const char _rcsid[] = "$Id: _cdio_bincue.c,v 1.34 2003/10/02 02:59:58 roc
|
|||||||
#ifdef HAVE_STRING_H
|
#ifdef HAVE_STRING_H
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_STRINGS_H
|
||||||
|
#include <strings.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_GLOB_H
|
#ifdef HAVE_GLOB_H
|
||||||
#include <glob.h>
|
#include <glob.h>
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
$Id: cdio.c,v 1.31 2003/10/02 02:59:58 rocky Exp $
|
$Id: cdio.c,v 1.32 2003/10/03 02:36:52 rocky Exp $
|
||||||
|
|
||||||
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
|
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
|
||||||
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
|
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
#include <cdio/logging.h>
|
#include <cdio/logging.h>
|
||||||
#include "cdio_private.h"
|
#include "cdio_private.h"
|
||||||
|
|
||||||
static const char _rcsid[] = "$Id: cdio.c,v 1.31 2003/10/02 02:59:58 rocky Exp $";
|
static const char _rcsid[] = "$Id: cdio.c,v 1.32 2003/10/03 02:36:52 rocky Exp $";
|
||||||
|
|
||||||
|
|
||||||
const char *track_format2str[6] =
|
const char *track_format2str[6] =
|
||||||
@@ -88,7 +88,7 @@ CdIo_driver_t CdIo_all_drivers[CDIO_MAX_DRIVER+1] = {
|
|||||||
&cdio_open_bsdi,
|
&cdio_open_bsdi,
|
||||||
&cdio_get_default_device_bsdi,
|
&cdio_get_default_device_bsdi,
|
||||||
&cdio_is_device_generic,
|
&cdio_is_device_generic,
|
||||||
NULL
|
&cdio_get_devices_bsdi
|
||||||
},
|
},
|
||||||
|
|
||||||
{DRIVER_FREEBSD,
|
{DRIVER_FREEBSD,
|
||||||
@@ -121,7 +121,7 @@ CdIo_driver_t CdIo_all_drivers[CDIO_MAX_DRIVER+1] = {
|
|||||||
&cdio_open_solaris,
|
&cdio_open_solaris,
|
||||||
&cdio_get_default_device_solaris,
|
&cdio_get_default_device_solaris,
|
||||||
&cdio_is_device_generic,
|
&cdio_is_device_generic,
|
||||||
NULL
|
&cdio_get_devices_solaris
|
||||||
},
|
},
|
||||||
|
|
||||||
{DRIVER_OSX,
|
{DRIVER_OSX,
|
||||||
|
|||||||
Reference in New Issue
Block a user