diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-03-28 18:35:49 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-03-28 18:35:49 (GMT) |
commit | bb80ae98543f80779ef726a20460b9b180b5cd2b (patch) | |
tree | 872bec692934da5fca84a1f7a937881f8f8eaffb /src/H5PLpublic.h | |
parent | 09f8d2f37ef0944c4cc3d3337966be9616266887 (diff) | |
download | hdf5-bb80ae98543f80779ef726a20460b9b180b5cd2b.zip hdf5-bb80ae98543f80779ef726a20460b9b180b5cd2b.tar.gz hdf5-bb80ae98543f80779ef726a20460b9b180b5cd2b.tar.bz2 |
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 } |