summaryrefslogtreecommitdiffstats
path: root/src/H5SLprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-11-30 04:42:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-11-30 04:42:43 (GMT)
commit004885926373b2c1be6cc72b9de579166a30edb8 (patch)
tree8be4bd9ed335eb879820026aebc16e74f6da6bc7 /src/H5SLprivate.h
parent19942d7c01ab5437e3d90b2ca4f707683eb9cbd3 (diff)
downloadhdf5-004885926373b2c1be6cc72b9de579166a30edb8.zip
hdf5-004885926373b2c1be6cc72b9de579166a30edb8.tar.gz
hdf5-004885926373b2c1be6cc72b9de579166a30edb8.tar.bz2
[svn-r9602] Purpose:
New feature Description: Allow skip list keys to be strings (needed for property list support) Platforms tested: FreeBSD 4.10 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'src/H5SLprivate.h')
-rw-r--r--src/H5SLprivate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5SLprivate.h b/src/H5SLprivate.h
index e6f64d8..f2a4e24 100644
--- a/src/H5SLprivate.h
+++ b/src/H5SLprivate.h
@@ -41,7 +41,8 @@ typedef struct H5SL_node_t H5SL_node_t;
/* Typedef for kinds of skip lists supported */
typedef enum {
H5SL_TYPE_INT, /* Skip list keys are 'int's */
- H5SL_TYPE_HADDR /* Skip list keys are 'haddr_t's */
+ H5SL_TYPE_HADDR, /* Skip list keys are 'haddr_t's */
+ H5SL_TYPE_STR /* Skip list keys are 'char *'s (ie. strings) */
} H5SL_type_t;
/**********/