diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 19:40:03 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 19:40:03 (GMT) |
commit | d29548351fa5c7976a771d02042020b9b133312b (patch) | |
tree | 5c8f53232d7d451341d888aee5d901a6f9be08a8 /src/H5PLpublic.h | |
parent | af4d79cbb6ab621414f5c72366dadc7910e7402a (diff) | |
download | hdf5-d29548351fa5c7976a771d02042020b9b133312b.zip hdf5-d29548351fa5c7976a771d02042020b9b133312b.tar.gz hdf5-d29548351fa5c7976a771d02042020b9b133312b.tar.bz2 |
HDFFV-10143 change h5PLget to use buffer like H5Iget_name
Diffstat (limited to 'src/H5PLpublic.h')
-rw-r--r-- | src/H5PLpublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PLpublic.h b/src/H5PLpublic.h index ca46542..5e4dcae 100644 --- a/src/H5PLpublic.h +++ b/src/H5PLpublic.h @@ -49,7 +49,7 @@ H5_DLL herr_t H5PLprepend(const char* plugin_path); H5_DLL herr_t H5PLreplace(const char* plugin_path, unsigned int index); H5_DLL herr_t H5PLinsert(const char* plugin_path, unsigned int index); H5_DLL herr_t H5PLremove(unsigned int index); -H5_DLL const char* H5PLget(unsigned int index); +H5_DLL ssize_t H5PLget(unsigned int index, char *pathname/*out*/, size_t size); H5_DLL unsigned int H5PLsize(void); #ifdef __cplusplus |