diff options
author | Max Kellermann <max@duempel.org> | 2011-09-14 22:01:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-09-14 22:01:55 +0200 |
commit | dd33317f459f7dad954cb9d155a93339fe6d163c (patch) | |
tree | c0313532f3da6c858552d538ab25bf02fd830cf6 /src/input_internal.h | |
parent | c344d63fb38c5d5aec4ad11815762e7ba1a13a31 (diff) | |
download | mpd-dd33317f459f7dad954cb9d155a93339fe6d163c.tar.gz mpd-dd33317f459f7dad954cb9d155a93339fe6d163c.tar.xz mpd-dd33317f459f7dad954cb9d155a93339fe6d163c.zip |
input_stream: move input_stream_init(), _deinit() to _internal.c
Diffstat (limited to 'src/input_internal.h')
-rw-r--r-- | src/input_internal.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/input_internal.h b/src/input_internal.h new file mode 100644 index 000000000..260ea12a6 --- /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 |