diff options
author | Max Kellermann <max@duempel.org> | 2013-09-26 21:51:45 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-26 21:51:45 +0200 |
commit | ce1d8975751251d49581129193e09490ca650a8b (patch) | |
tree | 27eda9989e35a74ccdade4924c47391ce2ee56b6 /src/OutputControl.hxx | |
parent | 17e108a10a79a5cfb44981323442c92e35813e98 (diff) |
MusicPipe: expose the C++ API
Diffstat (limited to 'src/OutputControl.hxx')
-rw-r--r-- | src/OutputControl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OutputControl.hxx b/src/OutputControl.hxx index 373b1849c..165afb28c 100644 --- a/src/OutputControl.hxx +++ b/src/OutputControl.hxx @@ -27,7 +27,7 @@ struct audio_output; struct AudioFormat; struct config_param; -struct music_pipe; +class MusicPipe; struct player_control; void @@ -54,7 +54,7 @@ audio_output_disable(struct audio_output *ao); bool audio_output_update(struct audio_output *ao, AudioFormat audio_format, - const struct music_pipe *mp); + const MusicPipe &mp); void audio_output_play(struct audio_output *ao); |