rbcdio 0.02 → 0.03
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +34 -1
 - data/INSTALL +26 -35
 - data/Makefile.am +17 -15
 - data/Makefile.in +54 -62
 - data/NEWS +6 -1
 - data/Rakefile +1 -1
 - data/VERSION +1 -1
 - data/config.guess +49 -43
 - data/config.sub +17 -7
 - data/configure +64 -91
 - data/configure.ac +3 -6
 - data/doc/created.rid +1 -1
 - data/example/audio.rb +13 -15
 - data/example/cd-read.rb +13 -15
 - data/example/cdchange.rb +14 -16
 - data/example/device.rb +13 -14
 - data/example/drivers.rb +13 -15
 - data/example/eject.rb +13 -14
 - data/example/iso1.rb +7 -8
 - data/example/iso2.rb +7 -8
 - data/example/iso3.rb +7 -8
 - data/example/tracks.rb +13 -14
 - data/ext/cdio/Makefile +24 -28
 - data/ext/cdio/rubycdio_wrap.c +1263 -183
 - data/ext/iso9660/Makefile +24 -28
 - data/ext/iso9660/rubyiso9660_wrap.c +1050 -176
 - data/install-sh +82 -266
 - data/lib/cdio.rb +45 -46
 - data/lib/iso9660.rb +13 -15
 - data/missing +27 -34
 - data/swig/audio.swg +12 -13
 - data/swig/compat.swg +12 -13
 - data/swig/device.swg +12 -14
 - data/swig/device_const.swg +12 -13
 - data/swig/disc.swg +12 -13
 - data/swig/read.swg +12 -14
 - data/swig/rubycdio.swg +12 -14
 - data/swig/rubyiso9660.swg +12 -14
 - data/swig/track.swg +12 -13
 - data/swig/types.swg +12 -13
 - metadata +47 -40
 
    
        data/lib/iso9660.rb
    CHANGED
    
    | 
         @@ -1,23 +1,21 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
     | 
    
         
            -
            # $Id: iso9660.rb,v 1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # $Id: iso9660.rb,v 1.13 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
     | 
    
         
            -
            # 
     | 
| 
      
 4 
     | 
    
         
            +
            #  Copyright (C) 2006, 2008, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         
             
            #
         
     | 
| 
       6 
     | 
    
         
            -
            # 
     | 
| 
       7 
     | 
    
         
            -
            # 
     | 
| 
       8 
     | 
    
         
            -
            # 
     | 
| 
       9 
     | 
    
         
            -
            # 
     | 
| 
      
 6 
     | 
    
         
            +
            #  This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
            #  it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
            #  the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
            #  (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         
             
            #
         
     | 
| 
       11 
     | 
    
         
            -
            # 
     | 
| 
       12 
     | 
    
         
            -
            # 
     | 
| 
       13 
     | 
    
         
            -
            # 
     | 
| 
       14 
     | 
    
         
            -
            # 
     | 
| 
       15 
     | 
    
         
            -
            #
         
     | 
| 
       16 
     | 
    
         
            -
            #    You should have received a copy of the GNU General Public License
         
     | 
| 
       17 
     | 
    
         
            -
            #    along with this program; if not, write to the Free Software
         
     | 
| 
       18 
     | 
    
         
            -
            #    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
         
     | 
| 
       19 
     | 
    
         
            -
            #    02110-1301 USA.
         
     | 
| 
      
 11 
     | 
    
         
            +
            #  This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
            #  but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
            #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
            #  GNU General Public License for more details.
         
     | 
| 
       20 
15 
     | 
    
         
             
            #
         
     | 
| 
      
 16 
     | 
    
         
            +
            #  You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
            #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
       21 
19 
     | 
    
         
             
            # Author::    Rocky Bernstein  (mailto:rocky@gnu.org)
         
     | 
| 
       22 
20 
     | 
    
         
             
            #
         
     | 
| 
       23 
21 
     | 
    
         
             
            # = iso9660
         
     | 
    
        data/missing
    CHANGED
    
    | 
         @@ -1,9 +1,9 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #! /bin/sh
         
     | 
| 
       2 
2 
     | 
    
         
             
            # Common stub for a few missing GNU programs while installing.
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
            scriptversion= 
     | 
| 
      
 4 
     | 
    
         
            +
            scriptversion=2005-06-08.21
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
            # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 
     | 
| 
      
 6 
     | 
    
         
            +
            # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
         
     | 
| 
       7 
7 
     | 
    
         
             
            #   Free Software Foundation, Inc.
         
     | 
| 
       8 
8 
     | 
    
         
             
            # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
         @@ -33,8 +33,6 @@ if test $# -eq 0; then 
     | 
|
| 
       33 
33 
     | 
    
         
             
            fi
         
     | 
| 
       34 
34 
     | 
    
         | 
| 
       35 
35 
     | 
    
         
             
            run=:
         
     | 
| 
       36 
     | 
    
         
            -
            sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
         
     | 
| 
       37 
     | 
    
         
            -
            sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
         
     | 
| 
       38 
36 
     | 
    
         | 
| 
       39 
37 
     | 
    
         
             
            # In the cases where this matters, `missing' is being run in the
         
     | 
| 
       40 
38 
     | 
    
         
             
            # srcdir already.
         
     | 
| 
         @@ -46,7 +44,7 @@ fi 
     | 
|
| 
       46 
44 
     | 
    
         | 
| 
       47 
45 
     | 
    
         
             
            msg="missing on your system"
         
     | 
| 
       48 
46 
     | 
    
         | 
| 
       49 
     | 
    
         
            -
            case $1 in
         
     | 
| 
      
 47 
     | 
    
         
            +
            case "$1" in
         
     | 
| 
       50 
48 
     | 
    
         
             
            --run)
         
     | 
| 
       51 
49 
     | 
    
         
             
              # Try to run requested program, and just exit if it succeeds.
         
     | 
| 
       52 
50 
     | 
    
         
             
              run=
         
     | 
| 
         @@ -79,7 +77,6 @@ Supported PROGRAM values: 
     | 
|
| 
       79 
77 
     | 
    
         
             
              aclocal      touch file \`aclocal.m4'
         
     | 
| 
       80 
78 
     | 
    
         
             
              autoconf     touch file \`configure'
         
     | 
| 
       81 
79 
     | 
    
         
             
              autoheader   touch file \`config.h.in'
         
     | 
| 
       82 
     | 
    
         
            -
              autom4te     touch the output file, or create a stub one
         
     | 
| 
       83 
80 
     | 
    
         
             
              automake     touch all \`Makefile.in' files
         
     | 
| 
       84 
81 
     | 
    
         
             
              bison        create \`y.tab.[ch]', if possible, from existing .[ch]
         
     | 
| 
       85 
82 
     | 
    
         
             
              flex         create \`lex.yy.c', if possible, from existing .c
         
     | 
| 
         @@ -109,7 +106,7 @@ esac 
     | 
|
| 
       109 
106 
     | 
    
         
             
            # Now exit if we have it, but it failed.  Also exit now if we
         
     | 
| 
       110 
107 
     | 
    
         
             
            # don't have it and --version was passed (most likely to detect
         
     | 
| 
       111 
108 
     | 
    
         
             
            # the program).
         
     | 
| 
       112 
     | 
    
         
            -
            case $1 in
         
     | 
| 
      
 109 
     | 
    
         
            +
            case "$1" in
         
     | 
| 
       113 
110 
     | 
    
         
             
              lex|yacc)
         
     | 
| 
       114 
111 
     | 
    
         
             
                # Not GNU programs, they don't have --version.
         
     | 
| 
       115 
112 
     | 
    
         
             
                ;;
         
     | 
| 
         @@ -138,7 +135,7 @@ esac 
     | 
|
| 
       138 
135 
     | 
    
         | 
| 
       139 
136 
     | 
    
         
             
            # If it does not exist, or fails to run (possibly an outdated version),
         
     | 
| 
       140 
137 
     | 
    
         
             
            # try to emulate it.
         
     | 
| 
       141 
     | 
    
         
            -
            case $1 in
         
     | 
| 
      
 138 
     | 
    
         
            +
            case "$1" in
         
     | 
| 
       142 
139 
     | 
    
         
             
              aclocal*)
         
     | 
| 
       143 
140 
     | 
    
         
             
                echo 1>&2 "\
         
     | 
| 
       144 
141 
     | 
    
         
             
            WARNING: \`$1' is $msg.  You should only need it if
         
     | 
| 
         @@ -167,7 +164,7 @@ WARNING: \`$1' is $msg.  You should only need it if 
     | 
|
| 
       167 
164 
     | 
    
         
             
                test -z "$files" && files="config.h"
         
     | 
| 
       168 
165 
     | 
    
         
             
                touch_files=
         
     | 
| 
       169 
166 
     | 
    
         
             
                for f in $files; do
         
     | 
| 
       170 
     | 
    
         
            -
                  case $f in
         
     | 
| 
      
 167 
     | 
    
         
            +
                  case "$f" in
         
     | 
| 
       171 
168 
     | 
    
         
             
                  *:*) touch_files="$touch_files "`echo "$f" |
         
     | 
| 
       172 
169 
     | 
    
         
             
            				       sed -e 's/^[^:]*://' -e 's/:.*//'`;;
         
     | 
| 
       173 
170 
     | 
    
         
             
                  *) touch_files="$touch_files $f.in";;
         
     | 
| 
         @@ -195,8 +192,8 @@ WARNING: \`$1' is needed, but is $msg. 
     | 
|
| 
       195 
192 
     | 
    
         
             
                     You can get \`$1' as part of \`Autoconf' from any GNU
         
     | 
| 
       196 
193 
     | 
    
         
             
                     archive site."
         
     | 
| 
       197 
194 
     | 
    
         | 
| 
       198 
     | 
    
         
            -
                file=`echo "$*" | sed -n  
     | 
| 
       199 
     | 
    
         
            -
                test -z "$file" && file=`echo "$*" | sed -n  
     | 
| 
      
 195 
     | 
    
         
            +
                file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
         
     | 
| 
      
 196 
     | 
    
         
            +
                test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
         
     | 
| 
       200 
197 
     | 
    
         
             
                if test -f "$file"; then
         
     | 
| 
       201 
198 
     | 
    
         
             
            	touch $file
         
     | 
| 
       202 
199 
     | 
    
         
             
                else
         
     | 
| 
         @@ -217,25 +214,25 @@ WARNING: \`$1' $msg.  You should only need it if 
     | 
|
| 
       217 
214 
     | 
    
         
             
                     in order for those modifications to take effect.  You can get
         
     | 
| 
       218 
215 
     | 
    
         
             
                     \`Bison' from any GNU archive site."
         
     | 
| 
       219 
216 
     | 
    
         
             
                rm -f y.tab.c y.tab.h
         
     | 
| 
       220 
     | 
    
         
            -
                if  
     | 
| 
      
 217 
     | 
    
         
            +
                if [ $# -ne 1 ]; then
         
     | 
| 
       221 
218 
     | 
    
         
             
                    eval LASTARG="\${$#}"
         
     | 
| 
       222 
     | 
    
         
            -
            	case $LASTARG in
         
     | 
| 
      
 219 
     | 
    
         
            +
            	case "$LASTARG" in
         
     | 
| 
       223 
220 
     | 
    
         
             
            	*.y)
         
     | 
| 
       224 
221 
     | 
    
         
             
            	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
         
     | 
| 
       225 
     | 
    
         
            -
            	    if  
     | 
| 
      
 222 
     | 
    
         
            +
            	    if [ -f "$SRCFILE" ]; then
         
     | 
| 
       226 
223 
     | 
    
         
             
            	         cp "$SRCFILE" y.tab.c
         
     | 
| 
       227 
224 
     | 
    
         
             
            	    fi
         
     | 
| 
       228 
225 
     | 
    
         
             
            	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
         
     | 
| 
       229 
     | 
    
         
            -
            	    if  
     | 
| 
      
 226 
     | 
    
         
            +
            	    if [ -f "$SRCFILE" ]; then
         
     | 
| 
       230 
227 
     | 
    
         
             
            	         cp "$SRCFILE" y.tab.h
         
     | 
| 
       231 
228 
     | 
    
         
             
            	    fi
         
     | 
| 
       232 
229 
     | 
    
         
             
            	  ;;
         
     | 
| 
       233 
230 
     | 
    
         
             
            	esac
         
     | 
| 
       234 
231 
     | 
    
         
             
                fi
         
     | 
| 
       235 
     | 
    
         
            -
                if  
     | 
| 
      
 232 
     | 
    
         
            +
                if [ ! -f y.tab.h ]; then
         
     | 
| 
       236 
233 
     | 
    
         
             
            	echo >y.tab.h
         
     | 
| 
       237 
234 
     | 
    
         
             
                fi
         
     | 
| 
       238 
     | 
    
         
            -
                if  
     | 
| 
      
 235 
     | 
    
         
            +
                if [ ! -f y.tab.c ]; then
         
     | 
| 
       239 
236 
     | 
    
         
             
            	echo 'main() { return 0; }' >y.tab.c
         
     | 
| 
       240 
237 
     | 
    
         
             
                fi
         
     | 
| 
       241 
238 
     | 
    
         
             
                ;;
         
     | 
| 
         @@ -247,18 +244,18 @@ WARNING: \`$1' is $msg.  You should only need it if 
     | 
|
| 
       247 
244 
     | 
    
         
             
                     in order for those modifications to take effect.  You can get
         
     | 
| 
       248 
245 
     | 
    
         
             
                     \`Flex' from any GNU archive site."
         
     | 
| 
       249 
246 
     | 
    
         
             
                rm -f lex.yy.c
         
     | 
| 
       250 
     | 
    
         
            -
                if  
     | 
| 
      
 247 
     | 
    
         
            +
                if [ $# -ne 1 ]; then
         
     | 
| 
       251 
248 
     | 
    
         
             
                    eval LASTARG="\${$#}"
         
     | 
| 
       252 
     | 
    
         
            -
            	case $LASTARG in
         
     | 
| 
      
 249 
     | 
    
         
            +
            	case "$LASTARG" in
         
     | 
| 
       253 
250 
     | 
    
         
             
            	*.l)
         
     | 
| 
       254 
251 
     | 
    
         
             
            	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
         
     | 
| 
       255 
     | 
    
         
            -
            	    if  
     | 
| 
      
 252 
     | 
    
         
            +
            	    if [ -f "$SRCFILE" ]; then
         
     | 
| 
       256 
253 
     | 
    
         
             
            	         cp "$SRCFILE" lex.yy.c
         
     | 
| 
       257 
254 
     | 
    
         
             
            	    fi
         
     | 
| 
       258 
255 
     | 
    
         
             
            	  ;;
         
     | 
| 
       259 
256 
     | 
    
         
             
            	esac
         
     | 
| 
       260 
257 
     | 
    
         
             
                fi
         
     | 
| 
       261 
     | 
    
         
            -
                if  
     | 
| 
      
 258 
     | 
    
         
            +
                if [ ! -f lex.yy.c ]; then
         
     | 
| 
       262 
259 
     | 
    
         
             
            	echo 'main() { return 0; }' >lex.yy.c
         
     | 
| 
       263 
260 
     | 
    
         
             
                fi
         
     | 
| 
       264 
261 
     | 
    
         
             
                ;;
         
     | 
| 
         @@ -270,9 +267,11 @@ WARNING: \`$1' is $msg.  You should only need it if 
     | 
|
| 
       270 
267 
     | 
    
         
             
            	 \`Help2man' package in order for those modifications to take
         
     | 
| 
       271 
268 
     | 
    
         
             
            	 effect.  You can get \`Help2man' from any GNU archive site."
         
     | 
| 
       272 
269 
     | 
    
         | 
| 
       273 
     | 
    
         
            -
                file=`echo "$*" | sed -n  
     | 
| 
       274 
     | 
    
         
            -
                test -z "$file"  
     | 
| 
       275 
     | 
    
         
            -
             
     | 
| 
      
 270 
     | 
    
         
            +
                file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
         
     | 
| 
      
 271 
     | 
    
         
            +
                if test -z "$file"; then
         
     | 
| 
      
 272 
     | 
    
         
            +
            	file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
         
     | 
| 
      
 273 
     | 
    
         
            +
                fi
         
     | 
| 
      
 274 
     | 
    
         
            +
                if [ -f "$file" ]; then
         
     | 
| 
       276 
275 
     | 
    
         
             
            	touch $file
         
     | 
| 
       277 
276 
     | 
    
         
             
                else
         
     | 
| 
       278 
277 
     | 
    
         
             
            	test -z "$file" || exec >$file
         
     | 
| 
         @@ -290,17 +289,11 @@ WARNING: \`$1' is $msg.  You should only need it if 
     | 
|
| 
       290 
289 
     | 
    
         
             
                     DU, IRIX).  You might want to install the \`Texinfo' package or
         
     | 
| 
       291 
290 
     | 
    
         
             
                     the \`GNU make' package.  Grab either from any GNU archive site."
         
     | 
| 
       292 
291 
     | 
    
         
             
                # The file to touch is that specified with -o ...
         
     | 
| 
       293 
     | 
    
         
            -
                file=`echo "$*" | sed -n  
     | 
| 
       294 
     | 
    
         
            -
                test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
         
     | 
| 
      
 292 
     | 
    
         
            +
                file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
         
     | 
| 
       295 
293 
     | 
    
         
             
                if test -z "$file"; then
         
     | 
| 
       296 
294 
     | 
    
         
             
                  # ... or it is the one specified with @setfilename ...
         
     | 
| 
       297 
295 
     | 
    
         
             
                  infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
         
     | 
| 
       298 
     | 
    
         
            -
                  file=`sed -n '
         
     | 
| 
       299 
     | 
    
         
            -
            	/^@setfilename/{
         
     | 
| 
       300 
     | 
    
         
            -
            	  s/.* \([^ ]*\) *$/\1/
         
     | 
| 
       301 
     | 
    
         
            -
            	  p
         
     | 
| 
       302 
     | 
    
         
            -
            	  q
         
     | 
| 
       303 
     | 
    
         
            -
            	}' $infile`
         
     | 
| 
      
 296 
     | 
    
         
            +
                  file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
         
     | 
| 
       304 
297 
     | 
    
         
             
                  # ... or it is derived from the source name (dir/f.texi becomes f.info)
         
     | 
| 
       305 
298 
     | 
    
         
             
                  test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
         
     | 
| 
       306 
299 
     | 
    
         
             
                fi
         
     | 
| 
         @@ -324,13 +317,13 @@ WARNING: \`$1' is $msg.  You should only need it if 
     | 
|
| 
       324 
317 
     | 
    
         
             
                fi
         
     | 
| 
       325 
318 
     | 
    
         
             
                firstarg="$1"
         
     | 
| 
       326 
319 
     | 
    
         
             
                if shift; then
         
     | 
| 
       327 
     | 
    
         
            -
            	case $firstarg in
         
     | 
| 
      
 320 
     | 
    
         
            +
            	case "$firstarg" in
         
     | 
| 
       328 
321 
     | 
    
         
             
            	*o*)
         
     | 
| 
       329 
322 
     | 
    
         
             
            	    firstarg=`echo "$firstarg" | sed s/o//`
         
     | 
| 
       330 
323 
     | 
    
         
             
            	    tar "$firstarg" "$@" && exit 0
         
     | 
| 
       331 
324 
     | 
    
         
             
            	    ;;
         
     | 
| 
       332 
325 
     | 
    
         
             
            	esac
         
     | 
| 
       333 
     | 
    
         
            -
            	case $firstarg in
         
     | 
| 
      
 326 
     | 
    
         
            +
            	case "$firstarg" in
         
     | 
| 
       334 
327 
     | 
    
         
             
            	*h*)
         
     | 
| 
       335 
328 
     | 
    
         
             
            	    firstarg=`echo "$firstarg" | sed s/h//`
         
     | 
| 
       336 
329 
     | 
    
         
             
            	    tar "$firstarg" "$@" && exit 0
         
     | 
    
        data/swig/audio.swg
    CHANGED
    
    | 
         @@ -1,21 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: audio.swg,v 1.2 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       19 
18 
     | 
    
         
             
            */
         
     | 
| 
       20 
19 
     | 
    
         | 
| 
       21 
20 
     | 
    
         
             
            /** NOTE: THIS IS THE EASILY CONVERTED SUBSET OF LIBCDIO WE CAN DO. **/
         
     | 
    
        data/swig/compat.swg
    CHANGED
    
    | 
         @@ -1,21 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: compat.swg,v 1.2 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       19 
18 
     | 
    
         
             
            */
         
     | 
| 
       20 
19 
     | 
    
         
             
            %inline %{
         
     | 
| 
       21 
20 
     | 
    
         
             
            /* When libcdio version > 0.76 comes out this won't be needed. */
         
     | 
    
        data/swig/device.swg
    CHANGED
    
    | 
         @@ -1,22 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: device.swg,v 1.12 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2007, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
         
     | 
| 
       19 
     | 
    
         
            -
                02110-1301 USA.
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       20 
18 
     | 
    
         
             
            */
         
     | 
| 
       21 
19 
     | 
    
         
             
            /* See <cdio/device.h> for more extensive documentation. */
         
     | 
| 
       22 
20 
     | 
    
         | 
    
        data/swig/device_const.swg
    CHANGED
    
    | 
         @@ -1,21 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: device_const.swg,v 1.2 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       19 
18 
     | 
    
         
             
            */
         
     | 
| 
       20 
19 
     | 
    
         
             
            /* See <cdio/device.h> for more extensive documentation. */
         
     | 
| 
       21 
20 
     | 
    
         | 
    
        data/swig/disc.swg
    CHANGED
    
    | 
         @@ -1,21 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: disc.swg,v 1.2 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       19 
18 
     | 
    
         
             
            */
         
     | 
| 
       20 
19 
     | 
    
         
             
            /* See <cdio/device.h> for more extensive documentation. */
         
     | 
| 
       21 
20 
     | 
    
         | 
    
        data/swig/read.swg
    CHANGED
    
    | 
         @@ -1,22 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: read.swg,v 1.5 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
         
     | 
| 
       19 
     | 
    
         
            -
                02110-1301 USA.
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       20 
18 
     | 
    
         
             
            */
         
     | 
| 
       21 
19 
     | 
    
         
             
            /* See <cdio/read.h> for more extensive documentation. */
         
     | 
| 
       22 
20 
     | 
    
         | 
    
        data/swig/rubycdio.swg
    CHANGED
    
    | 
         @@ -1,22 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: rubycdio.swg,v 1.4 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2007, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
         
     | 
| 
       19 
     | 
    
         
            -
                02110-1301 USA.
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       20 
18 
     | 
    
         
             
            */
         
     | 
| 
       21 
19 
     | 
    
         
             
            %define DOCSTRING 
         
     | 
| 
       22 
20 
     | 
    
         
             
            "This is a wrapper for The CD Input and Control library (libcdio) which
         
     | 
    
        data/swig/rubyiso9660.swg
    CHANGED
    
    | 
         @@ -1,22 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: rubyiso9660.swg,v 1.6 2008/05/02 13:05:40 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
         
     | 
| 
       19 
     | 
    
         
            -
                02110-1301 USA
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       20 
18 
     | 
    
         
             
            */
         
     | 
| 
       21 
19 
     | 
    
         
             
            %define DOCSTRING 
         
     | 
| 
       22 
20 
     | 
    
         
             
            "This is a wrapper for The CD Input and Control library's ISO-9660 library
         
     | 
    
        data/swig/track.swg
    CHANGED
    
    | 
         @@ -1,21 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: track.swg,v 1.5 2008/05/02 13:05:41 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 59 Temple Place, Suite 330, Boston=, MA  02111-1307  USA
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       19 
18 
     | 
    
         
             
            */
         
     | 
| 
       20 
19 
     | 
    
         | 
| 
       21 
20 
     | 
    
         
             
            /* See <cdio/track.h> For more extensive documentation */
         
     | 
    
        data/swig/types.swg
    CHANGED
    
    | 
         @@ -1,21 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c -*-
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
              $Id: types.swg,v 1.3 2008/05/02 13:05:41 karl Exp $
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 4 
     | 
    
         
            +
              Copyright (C) 2006, 2008 Rocky Bernstein <rocky@gnu.org>
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 6 
     | 
    
         
            +
              This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
              it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
              the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
              (at your option) any later version.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
      
 11 
     | 
    
         
            +
              This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
              but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
              MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         
     | 
| 
      
 14 
     | 
    
         
            +
              GNU General Public License for more details.
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
         
     | 
| 
      
 16 
     | 
    
         
            +
              You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
              along with this program.  If not, see <http://www.gnu.org/licenses/>.
         
     | 
| 
       19 
18 
     | 
    
         
             
            */
         
     | 
| 
       20 
19 
     | 
    
         | 
| 
       21 
20 
     | 
    
         
             
            /* 
         
     |