aboutsummaryrefslogtreecommitdiff
path: root/src/input_internal.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-09-14 22:01:55 +0200
committerMax Kellermann <max@duempel.org>2011-09-14 22:01:55 +0200
commitdd33317f459f7dad954cb9d155a93339fe6d163c (patch)
treec0313532f3da6c858552d538ab25bf02fd830cf6 /src/input_internal.h
parentc344d63fb38c5d5aec4ad11815762e7ba1a13a31 (diff)
input_stream: move input_stream_init(), _deinit() to _internal.c
Diffstat (limited to 'src/input_internal.h')
-rw-r--r--src/input_internal.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/input_internal.h b/src/input_internal.h
new file mode 100644
index 00000000..260ea12a
--- /dev/null
+++ b/src/input_internal.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * http://www.musicpd.org
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef MPD_INPUT_INTERNAL_H
+#define MPD_INPUT_INTERNAL_H
+
+#include "check.h"
+
+struct input_stream;
+struct input_plugin;
+
+void
+input_stream_init(struct input_stream *is, const struct input_plugin *plugin,
+ const char *uri);
+
+void
+input_stream_deinit(struct input_stream *is);
+
+#endif