aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/plugins/ArchiveInputPlugin.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-10-02 21:00:38 +0200
committerMax Kellermann <max@duempel.org>2014-10-02 21:00:38 +0200
commit0c461c3859127246c5305ce13744da68aab1aee0 (patch)
tree6b152a72436c2054c9c6d2d40bf7ce7d3d0e88c7 /src/input/plugins/ArchiveInputPlugin.hxx
parent0d38bd9b3bf9b978c3e9a08324ff8ea764a530bd (diff)
downloadmpd-0c461c3859127246c5305ce13744da68aab1aee0.tar.gz
mpd-0c461c3859127246c5305ce13744da68aab1aee0.tar.xz
mpd-0c461c3859127246c5305ce13744da68aab1aee0.zip
input/archive: export function OpenArchiveInputStream()
Diffstat (limited to '')
-rw-r--r--src/input/plugins/ArchiveInputPlugin.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/input/plugins/ArchiveInputPlugin.hxx b/src/input/plugins/ArchiveInputPlugin.hxx
index 024723726..b6158684a 100644
--- a/src/input/plugins/ArchiveInputPlugin.hxx
+++ b/src/input/plugins/ArchiveInputPlugin.hxx
@@ -20,6 +20,15 @@
#ifndef MPD_INPUT_ARCHIVE_HXX
#define MPD_INPUT_ARCHIVE_HXX
+class InputStream;
+class Path;
+class Mutex;
+class Cond;
+class Error;
+
extern const struct InputPlugin input_plugin_archive;
+InputStream *
+OpenArchiveInputStream(Path path, Mutex &mutex, Cond &cond, Error &error);
+
#endif