Add mode_sense6() and mode_sense10() MMC commands. Use them to

hopefully clean up code a little. Remove some unused MMC "private"
commands.

iso4 -> isofuzzy
This commit is contained in:
rocky
2005-02-09 02:50:46 +00:00
parent feb3e26e7a
commit 3755da8d0c
8 changed files with 162 additions and 179 deletions

View File

@@ -9,6 +9,7 @@ device
drives
iso?
iso?cpp
isofuzzy
mmc1
mmc2
paranoia

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.17 2005/02/06 15:09:10 rocky Exp $
# $Id: Makefile.am,v 1.18 2005/02/09 02:50:47 rocky Exp $
#
# Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
#
@@ -21,10 +21,10 @@
####################################################
#
if DISABLE_CPP
noinst_PROGRAMS = cdtext device drives iso1 iso2 iso3 iso4 mmc1 mmc2 \
noinst_PROGRAMS = cdtext device drives iso1 iso2 iso3 isofuzzy mmc1 mmc2 \
paranoia paranoia2 tracks sample3 sample4
else
noinst_PROGRAMS = cdtext device drives iso1 iso2 iso3 iso4 mmc1 mmc2 \
noinst_PROGRAMS = cdtext device drives iso1 iso2 iso3 isofuzzy mmc1 mmc2 \
paranoia paranoia2 tracks sample3 sample4 \
iso1cpp iso2cpp iso3cpp
endif
@@ -37,13 +37,13 @@ device_LDADD = $(LIBCDIO_LIBS)
drives_LDADD = $(LIBCDIO_LIBS)
paranoia_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
paranoia_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
paranoia2_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
iso1_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso3_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso4_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso1_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso3_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofuzzy_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
if !DISABLE_CPP
iso1cpp_SOURCES = iso1cpp.cpp

View File

@@ -1,4 +1,4 @@
$Id: README,v 1.14 2005/02/06 15:09:10 rocky Exp $
$Id: README,v 1.15 2005/02/09 02:50:47 rocky Exp $
This directory contains some simple examples of the use of the libcdio
library.
@@ -29,7 +29,7 @@ iso2.c: A program to show using libiso9660 to extract a file
iso3.c: A program to show using libiso9660 to extract a file from an
ISO-9660 image.
iso4.c: A program showing fuzzy ISO-9660 detection/reading.
isofuzzy.c : A program showing fuzzy ISO-9660 detection/reading.
iso1cpp.cpp: iso1.c compiled via C++
iso2cpp.cpp: iso2.c compiled via C++

View File

@@ -1,5 +1,5 @@
/*
$Id: iso4.c,v 1.2 2005/02/05 18:58:36 rocky Exp $
$Id: isofuzzy.c,v 1.1 2005/02/09 02:50:47 rocky Exp $
Copyright (C) 2005 Rocky Bernstein <rocky@panix.com>