diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2002-11-25 17:59:14 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2002-11-25 17:59:14 (GMT) |
commit | 8333adf8ffc1265440aefad62e0cd9ab33175bd7 (patch) | |
tree | dc4321c2e92663f32f83c9feab57aaddab839f57 /src/H5Bprivate.h | |
parent | b4b718b9297c479a3d1177209dcf1214d7de27a4 (diff) | |
download | hdf5-8333adf8ffc1265440aefad62e0cd9ab33175bd7.zip hdf5-8333adf8ffc1265440aefad62e0cd9ab33175bd7.tar.gz hdf5-8333adf8ffc1265440aefad62e0cd9ab33175bd7.tar.bz2 |
[svn-r6136]
Purpose:
new functions
Description:
H5Gget_num_objs, H5Gget_objname_by_idx and H5Gget_objtype_by_idx.
Platforms tested:
modi4, arabica, eirene
Misc. update:
RELEASE.txt updated.
Diffstat (limited to 'src/H5Bprivate.h')
-rw-r--r-- | src/H5Bprivate.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/H5Bprivate.h b/src/H5Bprivate.h index 9f2937c..3a59d93 100644 --- a/src/H5Bprivate.h +++ b/src/H5Bprivate.h @@ -50,9 +50,16 @@ typedef enum H5B_ins_t { H5B_INS_REMOVE = 5 /*remove current node */ } H5B_ins_t; +/* Define return values from operator callback function for H5B_iterate */ +typedef enum H5B_iterate_t { + H5B_ITER_ERROR = -1, /*error return value */ + H5B_ITER_CONT = 0, /*continue the loop */ + H5B_ITER_STOP = 1 /*stop and break the loop */ +} H5B_iterate_t; + /* Define the operator callback function pointer for H5B_iterate() */ -typedef herr_t (*H5B_operator_t)(H5F_t *f, void *_lt_key, haddr_t addr, - void *_rt_key, void *_udata); +typedef H5B_iterate_t (*H5B_operator_t)(H5F_t *f, void *_lt_key, haddr_t addr, + void *_rt_key, void *_udata); /* * Each class of object that can be pointed to by a B-link tree has a |