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 19:15:13 (GMT)
commit77e1f1e4913584c98ee7dde46650be9b18ac0161 (patch)
tree9f1882ebd788dd3173750a79b8da61169979b2fd /src/H5PLpublic.h
parent9b59aeadf092705ed525cbf1aa27cedbff955b1f (diff)
downloadhdf5-77e1f1e4913584c98ee7dde46650be9b18ac0161.zip
hdf5-77e1f1e4913584c98ee7dde46650be9b18ac0161.tar.gz
hdf5-77e1f1e4913584c98ee7dde46650be9b18ac0161.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
}