input/rewind: move sources out of the "plugins" directory

This is not a plugin.
This commit is contained in:
Max Kellermann
2018-06-22 19:31:06 +02:00
parent 197968d65e
commit 01d8eb6290
5 changed files with 8 additions and 8 deletions

View File

@@ -22,7 +22,7 @@
#include "Registry.hxx"
#include "InputPlugin.hxx"
#include "LocalOpen.hxx"
#include "plugins/RewindInputPlugin.hxx"
#include "RewindInputStream.hxx"
#include "fs/Traits.hxx"
#include "fs/AllocatedPath.hxx"

View File

@@ -18,8 +18,8 @@
*/
#include "config.h"
#include "RewindInputPlugin.hxx"
#include "../ProxyInputStream.hxx"
#include "RewindInputStream.hxx"
#include "ProxyInputStream.hxx"
#include <assert.h>
#include <string.h>

View File

@@ -24,11 +24,11 @@
* each decoder plugin peek a portion from the stream).
*/
#ifndef MPD_INPUT_REWIND_HXX
#define MPD_INPUT_REWIND_HXX
#ifndef MPD_REWIND_INPUT_STREAM_HXX
#define MPD_REWIND_INPUT_STREAM_HXX
#include "check.h"
#include "input/Ptr.hxx"
#include "Ptr.hxx"
InputStreamPtr
input_rewind_open(InputStreamPtr is);