~ubuntu-branches/ubuntu/maverick/libcdio/maverick

« back to all changes in this revision

Viewing changes to lib/iso9660/iso9660_private.h

  • Committer: Bazaar Package Importer
  • Author(s): Nicolas Boullis
  • Date: 2007-10-04 00:52:35 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071004005235-4e3gdi4x2q2d14jx
Tags: 0.78.2+dfsg1-1
* Repack the source tarball to remove non-DFSG-free
  documentation. Thanks to Joerg Jaspert for pointing this.
* Also update debian/copyright to reflect the status of the removed
  documentation.
* Add libncurses5-dev | libncurses-dev to the build-dependencies, for
  cdda-player.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
    $Id: iso9660_private.h,v 1.3 2005/02/12 10:23:18 rocky Exp $
 
2
    $Id: iso9660_private.h,v 1.4 2005/11/06 00:39:37 rocky Exp $
3
3
 
4
4
    Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
5
5
    Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
57
57
 * See mkisofs.h
58
58
 */
59
59
 
60
 
/* We use this to help us look up the parent inode numbers. */
61
 
 
 
60
/** We use this to help us look up the parent inode numbers. */
62
61
typedef struct iso_path_table_s {
63
 
  uint8_t  name_len; /* 7.1.1 */
64
 
  uint8_t  xa_len;   /* 7.1.1 */
65
 
  uint32_t extent;   /* 7.3.1/7.3.2 */
66
 
  uint16_t parent;   /* 7.2.1/7.2.2 */
 
62
  uint8_t  name_len; /**< 7.1.1 */
 
63
  uint8_t  xa_len;   /**< 7.1.1 */
 
64
  uint32_t extent;   /**< 7.3.1/7.3.2 */
 
65
  uint16_t parent;   /**< 7.2.1/7.2.2 */
67
66
  char     name[EMPTY_ARRAY_SIZE];
68
67
} GNUC_PACKED iso_path_table_t;
69
68