diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-03-28 18:36:52 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-03-28 18:36:52 (GMT) |
commit | 98e4bfec5a16d5530fedcbad68c8783386b94ea1 (patch) | |
tree | 872bec692934da5fca84a1f7a937881f8f8eaffb /src/H5PLpublic.h | |
parent | be028580c8789301e4106d8d6e79a8fc8300e706 (diff) | |
parent | bb80ae98543f80779ef726a20460b9b180b5cd2b (diff) | |
download | hdf5-98e4bfec5a16d5530fedcbad68c8783386b94ea1.zip hdf5-98e4bfec5a16d5530fedcbad68c8783386b94ea1.tar.gz hdf5-98e4bfec5a16d5530fedcbad68c8783386b94ea1.tar.bz2 |
Merge pull request #5 in ~BYRN/hdf5_adb from bugfix/HDFFV-10143-programmatic-setting-plugin-path to develop
* commit 'bb80ae98543f80779ef726a20460b9b180b5cd2b':
HDFFV-10143 add APIs to manipulate plugin path table
Diffstat (limited to 'src/H5PLpublic.h')
-rw-r--r-- | src/H5PLpublic.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/H5PLpublic.h b/src/H5PLpublic.h index 0528945..f3fe497 100644 --- a/src/H5PLpublic.h +++ b/src/H5PLpublic.h @@ -44,6 +44,13 @@ 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 H5PLremove(unsigned int index); +H5_DLL const char* H5PLget(unsigned int index); +H5_DLL unsigned int H5PLsize(void); #ifdef __cplusplus } |