From ae450d2a3fe04e8747c2f4d4c85c9fd1eb6c0420 Mon Sep 17 00:00:00 2001
From: Warren Dukes <warren.dukes@gmail.com>
Date: Sun, 30 May 2004 00:41:23 +0000
Subject: [PATCH] input plugin header stuff

git-svn-id: https://svn.musicpd.org/mpd/trunk@1234 09075e82-0dd4-0310-85a5-a0d7c8717e4f
---
 src/input_plugin.h | 8 ++++++++
 1 file changed, 8 insertions(+)

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