NEWS: all that's gone on so far in 0.73cvs

README: Note paranoia and samba vfs module
*.{h,c}: more debugger symbols. Use _s convention more.
This commit is contained in:
rocky
2005-02-22 10:42:50 +00:00
parent 7bbdbd4f7c
commit a37cfc0ba4
7 changed files with 58 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: iso9660.h,v 1.73 2005/02/22 04:32:52 rocky Exp $
$Id: iso9660.h,v 1.74 2005/02/22 10:42:50 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
@@ -77,7 +77,7 @@ typedef char dchar_t; /*! See section 7.4.1 */
to be helpful in debuggers where wants just to refer to the
ISO_*_ names and get something.
*/
extern enum iso_enums1 {
extern enum iso_enum1_s {
ISO_PVD_SECTOR = 16, /**< Sector of Primary Volume Descriptor */
ISO_EVD_SECTOR = 17, /**< Sector of End Volume Descriptor */
LEN_ISONAME = 31, /**< size in bytes of the filename
@@ -98,7 +98,7 @@ extern enum iso_enums1 {
to be helpful in debuggers where wants just to refer to the
ISO_*_ names and get something.
*/
extern enum iso_flag_enums {
extern enum iso_flag_enum_s {
ISO_FILE = 0, /**< Not really a flag... */
ISO_EXISTENCE = 1, /**< Do not make existence known (hidden) */
ISO_DIRECTORY = 2, /**< This file is a directory */
@@ -110,7 +110,7 @@ extern enum iso_flag_enums {
ISO_MULTIEXTENT = 128, /**< Not final entry of a mult. ext. file */
} iso_flag_enums;
extern enum iso_vd_enums {
extern enum iso_vd_enum_s {
ISO_VD_BOOT_RECORD = 0, /**< CD is bootable */
ISO_VD_PRIMARY = 1, /**< Is in any ISO-9660 */
ISO_VD_SUPPLEMENARY = 2, /**< Used by Joliet, for example */
@@ -554,7 +554,7 @@ typedef uint8_t iso_extension_mask_t;
to be helpful in debuggers where wants just to refer to the
ISO_EXTENSION_*_ names and get something.
*/
extern enum iso_extension_enums {
extern enum iso_extension_enum_s {
ISO_EXTENSION_JOLIET_LEVEL1 = 0x01,
ISO_EXTENSION_JOLIET_LEVEL2 = 0x02,
ISO_EXTENSION_JOLIET_LEVEL3 = 0x04,

View File

@@ -1,5 +1,5 @@
/*
$Id: rock.h,v 1.7 2005/02/22 04:32:52 rocky Exp $
$Id: rock.h,v 1.8 2005/02/22 10:42:50 rocky Exp $
Copyright (C) 2005 Rocky Bernstein <rocky@panix.com>
@@ -38,7 +38,7 @@
be helpful in debuggers where wants just to refer to the ISO_ROCK_*
names and get something.
*/
extern enum cdio_rock_enums {
extern enum iso_rock_enums {
ISO_ROCK_IRUSR = 000400, /**< read permission (owner) */
ISO_ROCK_IWUSR = 000200, /**< write permission (owner) */
ISO_ROCK_IXUSR = 000100, /**< execute permission (owner) */
@@ -60,7 +60,7 @@ extern enum cdio_rock_enums {
ISO_ROCK_ISCHR = 020000, /**< character special */
ISO_ROCK_ISDIR = 040000, /**< directory */
ISO_ROCK_ISFIFO = 010000 /**< pipe or FIFO */
} cdio_rock_enums;
} iso_rock_enums;
#define ISO_ROCK_IRUSR 000400 /** read permission (owner) */
#define ISO_ROCK_IWUSR 000200 /** write permission (owner) */
@@ -350,6 +350,14 @@ int parse_rock_ridge_stat(iso9660_dir_t *de, /*out*/ iso9660_stat_t *p_stat);
*/
const char *iso9660_get_rock_attr_str(posix_mode_t st_mode);
/** These variables are not used, but are defined to facilatate debugging
by letting us use enumerations values (which also correspond to
#define's inside a debugged program.
*/
extern iso_rock_nm_flag_t iso_rock_nm_flag;
extern iso_rock_sl_flag_t iso_rock_sl_flag;
extern iso_rock_tf_flag_t iso_rock_tf_flag;
#endif /* __ISO_ROCK_H__ */
/*