summaryrefslogtreecommitdiffstats
path: root/src/H5Pprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-11-12 00:09:36 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-11-12 00:09:36 (GMT)
commita4076b55981d2faa677eeade27d0aa0b37782f5c (patch)
tree7d1f42e467c3c2d15db2af1334cc272c89a7f65f /src/H5Pprivate.h
parentf828fa13df4bbf2c78060fa6623645f2baaf7e45 (diff)
downloadhdf5-a4076b55981d2faa677eeade27d0aa0b37782f5c.zip
hdf5-a4076b55981d2faa677eeade27d0aa0b37782f5c.tar.gz
hdf5-a4076b55981d2faa677eeade27d0aa0b37782f5c.tar.bz2
[svn-r2871] Purpose:
Code updates Description: Finished fleshing out code for generic properties, although they are not used anywhere in the library yet. Platforms tested: FreeBSD 4.1.1 (hawkwind)
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r--src/H5Pprivate.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h
index 4fe1c11..a2484c8 100644
--- a/src/H5Pprivate.h
+++ b/src/H5Pprivate.h
@@ -103,8 +103,8 @@ __DLL__ H5P_genclass_t *H5P_create_class(H5P_genclass_t *par_class,
void *create_data,
H5P_cls_close_func_t cls_close,
void *close_data);
-__DLL__ H5P_genplist_t *H5P_create_list(H5P_genclass_t *cls);
-__DLL__ herr_t H5P_register(H5P_genclass_t *cls, const char *name,
+__DLL__ H5P_genplist_t *H5P_create_list(H5P_genclass_t *pclass);
+__DLL__ herr_t H5P_register(H5P_genclass_t *pclass, const char *name,
size_t size, void *def_value,
H5P_prp_create_func_t prp_create,
H5P_prp_set_func_t prp_set,
@@ -114,10 +114,10 @@ __DLL__ herr_t H5P_insert(H5P_genplist_t *plist, const char *name, size_t size,
void *value, H5P_prp_set_func_t prp_set,
H5P_prp_get_func_t prp_get,
H5P_prp_close_func_t prp_close);
-__DLL__ herr_t H5P_set(H5P_genplist_t *plist, const char *name, void *value);
-__DLL__ herr_t H5P_exist(H5P_genplist_t *plist, const char *name);
+__DLL__ herr_t H5P_set(hid_t plist_id, const char *name, void *value);
+__DLL__ htri_t H5P_exist(H5P_genplist_t *plist, const char *name);
__DLL__ herr_t H5P_get_size(H5P_genplist_t *plist, const char *name);
-__DLL__ herr_t H5P_get(H5P_genplist_t *plist, const char *name, void *value);
+__DLL__ herr_t H5P_get(hid_t plist_id, const char *name, void *value);
__DLL__ herr_t H5P_remove(H5P_genplist_t *plist, const char *name);
__DLL__ herr_t H5P_unregister(H5P_genclass_t *pclass, const char *name);
__DLL__ herr_t H5P_close_list(void *_plist);