diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-30 00:41:23 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-30 00:41:23 +0000 |
commit | ae450d2a3fe04e8747c2f4d4c85c9fd1eb6c0420 (patch) | |
tree | 4a05422ce0c7b32c4355cf405f1d9796979e845c | |
parent | 94786c5f8af9dcbc291d7ebd35c0477bec4c4f9e (diff) | |
download | mpd-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
-rw-r--r-- | src/input_plugin.h | 8 |
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 |