diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-07 15:25:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-07 15:25:06 (GMT) |
commit | bc0b7c478f4d4857023baec12763e0fb5cb45222 (patch) | |
tree | 214f769be5409eac0cac65d2d4e5324adcf1d241 /src/H5B2private.h | |
parent | eb36a96a79dd1cd6514794a18baac5f13ce633ae (diff) | |
download | hdf5-bc0b7c478f4d4857023baec12763e0fb5cb45222.zip hdf5-bc0b7c478f4d4857023baec12763e0fb5cb45222.tar.gz hdf5-bc0b7c478f4d4857023baec12763e0fb5cb45222.tar.bz2 |
[svn-r12873] Decription:
Add support for reverse index lookup to v2 B-trees (needed for reverse
index lookup of links in groups)
Tested on:
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5B2private.h')
-rw-r--r-- | src/H5B2private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5B2private.h b/src/H5B2private.h index 2ed9555..c262056 100644 --- a/src/H5B2private.h +++ b/src/H5B2private.h @@ -129,7 +129,8 @@ H5_DLL herr_t H5B2_iterate(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, H5_DLL herr_t H5B2_find(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr, void *udata, H5B2_found_t op, void *op_data); H5_DLL herr_t H5B2_index(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, - haddr_t addr, hsize_t idx, H5B2_found_t op, void *op_data); + haddr_t addr, H5_iter_order_t order, hsize_t idx, H5B2_found_t op, + void *op_data); H5_DLL herr_t H5B2_neighbor(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, haddr_t addr, H5B2_compare_t comp, void *udata, H5B2_found_t op, void *op_data); |