summaryrefslogtreecommitdiffstats
path: root/src/H5Sprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-10-26 22:44:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-10-26 22:44:13 (GMT)
commit7dcbae97f23f8409ed8d60640b3b2a8aaed70978 (patch)
tree54ba54ec5cdcda9651d63a4471a9a9ec2204e767 /src/H5Sprivate.h
parenta7b166727dce2c23c2a0c7805c3e3b8d38e4be2d (diff)
downloadhdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.zip
hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.gz
hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.bz2
[svn-r800] Made a "htri_t" as a return value from "boolean" functions returning
TRUE/FALSE/FAIL, hbool_t is now strictly for true boolean values.
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r--src/H5Sprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h
index 550b8a7..9b920e3 100644
--- a/src/H5Sprivate.h
+++ b/src/H5Sprivate.h
@@ -300,7 +300,7 @@ intn H5S_get_simple_extent_dims (const H5S_t *ds, hsize_t dims[]/*out*/,
herr_t H5S_modify (H5G_entry_t *ent, const H5S_t *space);
H5S_t *H5S_read (H5G_entry_t *ent);
intn H5S_cmp (const H5S_t *ds1, const H5S_t *ds2);
-hbool_t H5S_is_simple (const H5S_t *sdim);
+htri_t H5S_is_simple (const H5S_t *sdim);
uintn H5S_nelem (const H5S_t *space);
H5S_conv_t *H5S_find (const H5S_t *mem_space, const H5S_t *file_space);
herr_t H5S_select_hyperslab (H5S_t *space, H5S_seloper_t op,
@@ -320,7 +320,7 @@ hssize_t H5S_get_select_npoints (const H5S_t *space);
intn H5S_extend (H5S_t *space, const hsize_t *size);
herr_t H5S_set_extent_simple (H5S_t *space, int rank, const hsize_t *dims,
const hsize_t *max);
-hbool_t H5S_select_valid (const H5S_t *space);
+htri_t H5S_select_valid (const H5S_t *space);
herr_t H5S_debug(H5F_t *f, const void *_mesg, FILE *stream, intn indent,
intn fwidth);
herr_t H5S_register(H5S_sel_type cls, const H5S_fconv_t *fconv,
@@ -331,7 +331,7 @@ herr_t H5S_point_add (H5S_t *space, size_t num_elemn, const hssize_t **coord);
herr_t H5S_point_release (H5S_t *space);
hsize_t H5S_point_npoints (const H5S_t *space);
herr_t H5S_point_copy (H5S_t *dst, const H5S_t *src);
-hbool_t H5S_point_select_valid (const H5S_t *space);
+htri_t H5S_point_select_valid (const H5S_t *space);
/* "All" select functions */
herr_t H5S_all_release (H5S_t *space);
@@ -345,7 +345,7 @@ hsize_t H5S_hyper_npoints (const H5S_t *space);
int H5S_hyper_compare_regions (const void *r1, const void *r2);
int H5S_hyper_compare_bounds (const void *r1, const void *r2);
herr_t H5S_hyper_copy (H5S_t *dst, const H5S_t *src);
-hbool_t H5S_hyper_select_valid (const H5S_t *space);
+htri_t H5S_hyper_select_valid (const H5S_t *space);
herr_t H5S_hyper_node_add (H5S_hyper_node_t **head, intn endflag, intn rank, const hssize_t *start, const hsize_t *size);
herr_t H5S_hyper_clip (H5S_t *space, H5S_hyper_node_t *nodes, H5S_hyper_node_t **uniq, H5S_hyper_node_t **overlap);