diff options
Diffstat (limited to '')
-rw-r--r-- | src/db/UpnpDatabasePlugin.hxx (renamed from test/FakeSong.cxx) | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/test/FakeSong.cxx b/src/db/UpnpDatabasePlugin.hxx index c0859d7b1..0228405cd 100644 --- a/test/FakeSong.cxx +++ b/src/db/UpnpDatabasePlugin.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2012 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,17 +17,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" -#include "Song.hxx" -#include "directory.h" -#include "Compiler.h" +#ifndef MPD_UPNP_DATABASE_PLUGIN_HXX +#define MPD_UPNP_DATABASE_PLUGIN_HXX -#include <stdlib.h> +struct DatabasePlugin; -struct directory detached_root; +extern const DatabasePlugin upnp_db_plugin; -Song * -song_dup_detached(gcc_unused const Song *src) -{ - abort(); -} +#endif |