diff options
author | Max Kellermann <max@duempel.org> | 2013-02-22 20:51:23 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-02-22 20:51:23 +0100 |
commit | 496f70fc0d717719a6defb645918785381efa22b (patch) | |
tree | 7b0e8b58d53ebac96fd5ece67158038bb1c10dcc /src/MixerInternal.hxx | |
parent | 9ede4c5f3c5b72e8be2ee2e58ffdf36af019b607 (diff) | |
download | mpd-496f70fc0d717719a6defb645918785381efa22b.tar.gz mpd-496f70fc0d717719a6defb645918785381efa22b.tar.xz mpd-496f70fc0d717719a6defb645918785381efa22b.zip |
mixer_plugin: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/MixerInternal.hxx (renamed from src/mixer_api.h) | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/mixer_api.h b/src/MixerInternal.hxx index f0c9a0937..9c39e3e35 100644 --- a/src/mixer_api.h +++ b/src/MixerInternal.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,11 +17,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_MIXER_H -#define MPD_MIXER_H +#ifndef MPD_MIXER_INTERNAL_HXX +#define MPD_MIXER_INTERNAL_HXX -#include "mixer_plugin.h" -#include "mixer_list.h" +#include "MixerPlugin.hxx" +#include "MixerList.hxx" #include <glib.h> @@ -46,15 +46,7 @@ struct mixer { bool failed; }; -#ifdef __cplusplus -extern "C" { -#endif - void mixer_init(struct mixer *mixer, const struct mixer_plugin *plugin); -#ifdef __cplusplus -} -#endif - #endif |