aboutsummaryrefslogtreecommitdiffstats
path: root/src/input_plugin.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-05-30 00:41:23 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-05-30 00:41:23 +0000
commitae450d2a3fe04e8747c2f4d4c85c9fd1eb6c0420 (patch)
tree4a05422ce0c7b32c4355cf405f1d9796979e845c /src/input_plugin.h
parent94786c5f8af9dcbc291d7ebd35c0477bec4c4f9e (diff)
downloadmpd-ae450d2a3fe04e8747c2f4d4c85c9fd1eb6c0420.tar.gz
mpd-ae450d2a3fe04e8747c2f4d4c85c9fd1eb6c0420.tar.xz
mpd-ae450d2a3fe04e8747c2f4d4c85c9fd1eb6c0420.zip
input plugin header stuff
git-svn-id: https://svn.musicpd.org/mpd/trunk@1234 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/input_plugin.h')
-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