diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 18:22:43 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 18:22:43 (GMT) |
commit | af4d79cbb6ab621414f5c72366dadc7910e7402a (patch) | |
tree | 7fb167099fedf023d4dabe8064a7fc9032568772 /src/H5PLpublic.h | |
parent | 0bd67539d65658d3fc6dfe2a5f0d578909e81780 (diff) | |
download | hdf5-af4d79cbb6ab621414f5c72366dadc7910e7402a.zip hdf5-af4d79cbb6ab621414f5c72366dadc7910e7402a.tar.gz hdf5-af4d79cbb6ab621414f5c72366dadc7910e7402a.tar.bz2 |
HDFFV-10143 change put to replace and add const
Diffstat (limited to 'src/H5PLpublic.h')
-rw-r--r-- | src/H5PLpublic.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5PLpublic.h b/src/H5PLpublic.h index f3fe497..ca46542 100644 --- a/src/H5PLpublic.h +++ b/src/H5PLpublic.h @@ -44,10 +44,10 @@ extern "C" { /* plugin state */ H5_DLL herr_t H5PLset_loading_state(unsigned int plugin_type); H5_DLL herr_t H5PLget_loading_state(unsigned int* plugin_type/*out*/); -H5_DLL herr_t H5PLappend(char* plugin_path); -H5_DLL herr_t H5PLprepend(char* plugin_path); -H5_DLL herr_t H5PLput(char* plugin_path, unsigned int index); -H5_DLL herr_t H5PLinsert(char* plugin_path, unsigned int index); +H5_DLL herr_t H5PLappend(const char* plugin_path); +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 unsigned int H5PLsize(void); |