summaryrefslogtreecommitdiffstats
path: root/src/H5Bprivate.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2001-10-15 19:36:48 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2001-10-15 19:36:48 (GMT)
commitfe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e (patch)
treededfc092621626a511888fab242ce08655f17f3e /src/H5Bprivate.h
parent05eb7b7a848f94061f15736963fce1e9ee1ee6fd (diff)
downloadhdf5-fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e.zip
hdf5-fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e.tar.gz
hdf5-fe76b00dc68cf59cf38a2f1b3de5e0a6a12afb9e.tar.bz2
[svn-r4543]
Purpose: Changed the file creation property list to the new generic property list. Platform tested: IRIX64, SunOS5.7, FreeBSD
Diffstat (limited to 'src/H5Bprivate.h')
-rw-r--r--src/H5Bprivate.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Bprivate.h b/src/H5Bprivate.h
index b4283a5..f24f725 100644
--- a/src/H5Bprivate.h
+++ b/src/H5Bprivate.h
@@ -40,9 +40,6 @@
4 + /*type, level, num entries */ \
2*H5F_SIZEOF_ADDR(F)) /*left and right sibling addresses */
-#define H5B_K(F,TYPE) /*K value given file and Btree subclass */ \
- ((F)->shared->fcpl->btree_k[(TYPE)->id])
-
typedef enum H5B_ins_t {
H5B_INS_ERROR = -1, /*error return value */
H5B_INS_NOOP = 0, /*insert made no changes */
@@ -139,4 +136,6 @@ __DLL__ herr_t H5B_remove(H5F_t *f, const H5B_class_t *type, haddr_t addr,
void *udata);
__DLL__ herr_t H5B_iterate (H5F_t *f, const H5B_class_t *type, haddr_t addr,
void *udata);
+__DLL__ int H5B_Kvalue(H5F_t *f, const H5B_class_t *type);
+
#endif