diff --git a/include/cdio/iso9660.h b/include/cdio/iso9660.h index 469b62d4..bf89fb0c 100644 --- a/include/cdio/iso9660.h +++ b/include/cdio/iso9660.h @@ -1,5 +1,5 @@ /* - $Id: iso9660.h,v 1.2 2003/08/31 01:01:40 rocky Exp $ + $Id: iso9660.h,v 1.3 2003/08/31 01:32:05 rocky Exp $ Copyright (C) 2000 Herbert Valerio Riedel Copyright (C) 2003 Rocky Bernstein @@ -129,11 +129,13 @@ iso9660_pathtable_m_add_entry (void *pt, const char name[], uint32_t extent, uint8_t iso9660_get_dir_len(const iso_directory_record_t *idr); +#if FIXME uint8_t iso9660_get_dir_size(const iso_directory_record_t *idr); -uint8_t -iso9660_get_dir_extent(const iso_directory_record_t *idr); +lsn_t +iso9660_get_dir_extent(const iso_directory_record_t *idr);# +#endif uint8_t iso9660_get_pvd_type(const pvd_t *pvd); diff --git a/lib/iso9660.c b/lib/iso9660.c index 81990af1..bb7df5fc 100644 --- a/lib/iso9660.c +++ b/lib/iso9660.c @@ -1,5 +1,5 @@ /* - $Id: iso9660.c,v 1.2 2003/08/31 01:01:40 rocky Exp $ + $Id: iso9660.c,v 1.3 2003/08/31 01:32:05 rocky Exp $ Copyright (C) 2000 Herbert Valerio Riedel Copyright (C) 2003 Rocky Bernstein @@ -37,7 +37,7 @@ #include "cdio_assert.h" #include "bytesex.h" -static const char _rcsid[] = "$Id: iso9660.c,v 1.2 2003/08/31 01:01:40 rocky Exp $"; +static const char _rcsid[] = "$Id: iso9660.c,v 1.3 2003/08/31 01:32:05 rocky Exp $"; /* some parameters... */ #define SYSTEM_ID "CD-RTOS CD-BRIDGE" @@ -646,12 +646,14 @@ iso9660_pathname_isofy (const char pathname[], uint16_t version) return strdup (tmpbuf); } -uint8_t +#if FIXME +lsn_t iso9660_get_dir_extent(const iso_directory_record_t *idr) { if (NULL == idr) return 0; return from_733(idr->extent); } +#endif uint8_t iso9660_get_dir_len(const iso_directory_record_t *idr) @@ -660,12 +662,14 @@ iso9660_get_dir_len(const iso_directory_record_t *idr) return idr->length; } +#if FIXME uint8_t iso9660_get_dir_size(const iso_directory_record_t *idr) { if (NULL == idr) return 0; return from_733(idr->size); } +#endif uint8_t iso9660_get_pvd_type(const pvd_t *pvd)