summaryrefslogtreecommitdiffstats
path: root/src/H5Mpublic.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-08-13 15:46:56 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-08-13 15:46:56 (GMT)
commit5024051e35d4e113e7c144aed5b99f1be3cc938d (patch)
tree8f732e9cff89c367be5840af9a1fb64d9e3141a5 /src/H5Mpublic.h
parent5b6bd7c922d81bb6d1877c03e4b012823f03f88a (diff)
downloadhdf5-5024051e35d4e113e7c144aed5b99f1be3cc938d.zip
hdf5-5024051e35d4e113e7c144aed5b99f1be3cc938d.tar.gz
hdf5-5024051e35d4e113e7c144aed5b99f1be3cc938d.tar.bz2
Renamed H5Mdelete_key to H5Mdelete and H5Mset to H5Mput.
Diffstat (limited to 'src/H5Mpublic.h')
-rw-r--r--src/H5Mpublic.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Mpublic.h b/src/H5Mpublic.h
index 56c7d87..9cbdb32 100644
--- a/src/H5Mpublic.h
+++ b/src/H5Mpublic.h
@@ -37,7 +37,7 @@
#define H5VL_MAP_OPEN 2
#define H5VL_MAP_GET_VAL 3
#define H5VL_MAP_EXISTS 4
-#define H5VL_MAP_SET 5
+#define H5VL_MAP_PUT 5
#define H5VL_MAP_GET 6
#define H5VL_MAP_SPECIFIC 7
#define H5VL_MAP_CLOSE 8
@@ -59,7 +59,7 @@ typedef enum H5VL_map_get_t {
/* types for map SPECIFIC callback */
typedef enum H5VL_map_specific_t {
H5VL_MAP_ITER, /* H5Miterate */
- H5VL_MAP_DELETE_KEY /* H5Mdelete_key */
+ H5VL_MAP_DELETE /* H5Mdelete */
} H5VL_map_specific_t;
/* Callback for H5Miterate() */
@@ -95,7 +95,7 @@ H5_DLL hid_t H5Mget_val_type(hid_t map_id);
H5_DLL hid_t H5Mget_create_plist(hid_t map_id);
H5_DLL hid_t H5Mget_access_plist(hid_t map_id);
H5_DLL herr_t H5Mget_count(hid_t map_id, hsize_t *count, hid_t dxpl_id);
-H5_DLL herr_t H5Mset(hid_t map_id, hid_t key_mem_type_id, const void *key,
+H5_DLL herr_t H5Mput(hid_t map_id, hid_t key_mem_type_id, const void *key,
hid_t val_mem_type_id, const void *value, hid_t dxpl_id);
H5_DLL herr_t H5Mget(hid_t map_id, hid_t key_mem_type_id, const void *key,
hid_t val_mem_type_id, void *value, hid_t dxpl_id);
@@ -106,7 +106,7 @@ H5_DLL herr_t H5Miterate(hid_t map_id, hsize_t *idx, hid_t key_mem_type_id,
H5_DLL herr_t H5Miterate_by_name(hid_t loc_id, const char *map_name,
hsize_t *idx, hid_t key_mem_type_id, H5M_iterate_t op, void *op_data,
hid_t dxpl_id, hid_t lapl_id);
-H5_DLL herr_t H5Mdelete_key(hid_t map_id, hid_t key_mem_type_id,
+H5_DLL herr_t H5Mdelete(hid_t map_id, hid_t key_mem_type_id,
const void *key, hid_t dxpl_id);
/* Symbols defined for compatibility with previous versions of the HDF5 API.