diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-10-23 19:28:05 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-10-23 19:28:05 (GMT) |
commit | b39dd538ec81df8f65304e40ee6587a54b586577 (patch) | |
tree | ad4465072c8f63ee71cd9eed9a56978a4e9533a4 /src/H5Pprivate.h | |
parent | 8999dd751dc2995790f3aa3ee08bcb0cb5720a12 (diff) | |
download | hdf5-b39dd538ec81df8f65304e40ee6587a54b586577.zip hdf5-b39dd538ec81df8f65304e40ee6587a54b586577.tar.gz hdf5-b39dd538ec81df8f65304e40ee6587a54b586577.tar.bz2 |
[svn-r6024] Purpose:
Feature Add
Description:
Moved some functions from having only module scope to having public
scope, but only available in the HDF5 internals (not public APIs).
Platforms tested:
Eirene, Arabica, Modi4
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index f0eefd1..dca48be 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -29,6 +29,7 @@ typedef struct H5P_genclass_t H5P_genclass_t; H5_DLL herr_t H5P_init(void); /* Internal versions of API routines */ +H5_DLL herr_t H5P_close(void *_plist); H5_DLL hid_t H5P_create_id(H5P_genclass_t *pclass); H5_DLL hid_t H5P_copy_plist(H5P_genplist_t *old_plist); H5_DLL herr_t H5P_get(H5P_genplist_t *plist, const char *name, void *value); @@ -42,6 +43,7 @@ H5_DLL htri_t H5P_exist_plist(H5P_genplist_t *plist, const char *name); H5_DLL char *H5P_get_class_name(H5P_genclass_t *pclass); H5_DLL char *H5P_get_class_path(H5P_genclass_t *pclass); H5_DLL H5P_genclass_t *H5P_open_class_path(const char *path); +H5_DLL herr_t H5P_close_class(void *_pclass); H5_DLL herr_t H5P_get_nprops_pclass(H5P_genclass_t *pclass, size_t *nprops); H5_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, |