aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/input_plugin.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/input_plugin.h b/src/input_plugin.h
index 8a7efeb7d..87e71a41a 100644
--- a/src/input_plugin.h
+++ b/src/input_plugin.h
@@ -45,4 +45,12 @@ InputPlugin * getInputPluginFromName(char * name);
and don't have a suffix in the url! */
InputPlugin * getDefaultInputPlugin();
+/* this is where we "load" all the "plugins" ;-) */
+void initInputPlugins();
+
+/* this is where we "unload" all the "plugins" */
+void finishInputPlugins();
+
+void unloadInputPlugin(InputPlugin * inputPlugin);
+
#endif