summaryrefslogtreecommitdiffstats
path: root/src/H5Ppublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-11-27 19:17:07 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-11-27 19:17:07 (GMT)
commit957a5082d12873eb4238a962ce0193adeac5a1dc (patch)
tree7cf8d7ec52ba3dd2d3778fd1ec39d8e73474e84c /src/H5Ppublic.h
parentbb949004910e34cebeb2b0c547f8c5f5dcedc896 (diff)
downloadhdf5-957a5082d12873eb4238a962ce0193adeac5a1dc.zip
hdf5-957a5082d12873eb4238a962ce0193adeac5a1dc.tar.gz
hdf5-957a5082d12873eb4238a962ce0193adeac5a1dc.tar.bz2
[svn-r12983] Description:
Merge H5Pget/set_create_tracking / H5Pget/set_create_index routines into H5Pget/set_creation_order. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r--src/H5Ppublic.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index ea929b8..8d15c22 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -88,6 +88,10 @@
#define H5P_LINK_CREATE_DEFAULT (H5OPEN H5P_LST_LINK_CREATE_g)
#define H5P_LINK_ACCESS_DEFAULT (H5OPEN H5P_LST_LINK_ACCESS_g)
+/* Common creation order flags (for links in groups and attributes on objects) */
+#define H5P_CRT_ORDER_TRACKED 0x0001
+#define H5P_CRT_ORDER_INDEXED 0x0002
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -382,10 +386,8 @@ H5_DLL herr_t H5Pset_link_phase_change(hid_t plist_id, unsigned max_compact, uns
H5_DLL herr_t H5Pget_link_phase_change(hid_t plist_id, unsigned *max_compact /*out*/, unsigned *min_dense /*out*/);
H5_DLL herr_t H5Pset_est_link_info(hid_t plist_id, unsigned est_num_entries, unsigned est_name_len);
H5_DLL herr_t H5Pget_est_link_info(hid_t plist_id, unsigned *est_num_entries /* out */, unsigned *est_name_len /* out */);
-H5_DLL herr_t H5Pset_creation_order_tracking(hid_t plist_id, hbool_t track_corder);
-H5_DLL herr_t H5Pget_creation_order_tracking(hid_t plist_id, hbool_t *track_corder /* out */);
-H5_DLL herr_t H5Pset_creation_order_index(hid_t plist_id, hbool_t index_corder);
-H5_DLL herr_t H5Pget_creation_order_index(hid_t plist_id, hbool_t *index_corder /* out */);
+H5_DLL herr_t H5Pset_link_creation_order(hid_t plist_id, unsigned crt_order_flags);
+H5_DLL herr_t H5Pget_link_creation_order(hid_t plist_id, unsigned *crt_order_flags /* out */);
/* String creation property list (SCPL) routines */
H5_DLL herr_t H5Pset_char_encoding(hid_t plist_id, H5T_cset_t encoding);