summaryrefslogtreecommitdiffstats
path: root/src/H5PLpublic.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-03-28 18:35:49 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-03-28 18:35:49 (GMT)
commitbb80ae98543f80779ef726a20460b9b180b5cd2b (patch)
tree872bec692934da5fca84a1f7a937881f8f8eaffb /src/H5PLpublic.h
parent09f8d2f37ef0944c4cc3d3337966be9616266887 (diff)
downloadhdf5-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.h7
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
}