diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-17 16:38:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-17 16:38:43 (GMT) |
commit | 15a916df4ba024d944c2e549fdff8165de3e36a3 (patch) | |
tree | 1167886df032fb301047fb4cc59766fb87788abc /src/H5Pprivate.h | |
parent | 2ae3f6b8669ce5dc19fe7e3d03eeb4728d8c9d1c (diff) | |
download | hdf5-15a916df4ba024d944c2e549fdff8165de3e36a3.zip hdf5-15a916df4ba024d944c2e549fdff8165de3e36a3.tar.gz hdf5-15a916df4ba024d944c2e549fdff8165de3e36a3.tar.bz2 |
[svn-r5652] Purpose:
Code cleanup
Description:
Use dataset transfer property list to hold information about the MPI types
for the current transfer, instead of setting pseudo-global variables in
the file's struct.
Platforms tested:
Linux 2.2.x (eirene) w/parallel & IRIX64 6.5 (modi4) w/parallel & FORTRAN
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index c7b555b..083e383 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -33,6 +33,12 @@ __DLL__ hid_t H5P_create_id(H5P_genclass_t *pclass); __DLL__ hid_t H5P_copy_plist(H5P_genplist_t *old_plist); __DLL__ herr_t H5P_get(H5P_genplist_t *plist, const char *name, void *value); __DLL__ herr_t H5P_set(H5P_genplist_t *plist, const char *name, const void *value); +__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_delete_func_t prp_delete, H5P_prp_copy_func_t prp_copy, + H5P_prp_close_func_t prp_close); +__DLL__ herr_t H5P_remove(hid_t plist_id, H5P_genplist_t *plist, const char *name); +__DLL__ htri_t H5P_exist_plist(H5P_genplist_t *plist, const char *name); __DLL__ char *H5P_get_class_name(H5P_genclass_t *pclass); __DLL__ herr_t H5P_get_nprops_pclass(H5P_genclass_t *pclass, size_t *nprops); __DLL__ herr_t H5P_register(H5P_genclass_t *pclass, const char *name, size_t size, |