aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/RoarOutputPlugin.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-16 23:29:56 +0100
committerMax Kellermann <max@duempel.org>2013-01-16 23:29:56 +0100
commite22ef6c481ab6fff3a704c515804101d9ae399a1 (patch)
tree3323ddf2f6fa21501278eb34f783d5b65ccea25d /src/output/RoarOutputPlugin.hxx
parent2bb01093c0898d2605ba7df0b2cba6e8541a8509 (diff)
downloadmpd-e22ef6c481ab6fff3a704c515804101d9ae399a1.tar.gz
mpd-e22ef6c481ab6fff3a704c515804101d9ae399a1.tar.xz
mpd-e22ef6c481ab6fff3a704c515804101d9ae399a1.zip
output/roar: convert to C++
Diffstat (limited to '')
-rw-r--r--src/output/RoarOutputPlugin.hxx (renamed from src/output/roar_output_plugin.h)10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/output/roar_output_plugin.h b/src/output/RoarOutputPlugin.hxx
index 78b628cc4..faa4b4d5c 100644
--- a/src/output/roar_output_plugin.h
+++ b/src/output/RoarOutputPlugin.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
@@ -20,16 +20,14 @@
#ifndef MPD_ROAR_OUTPUT_PLUGIN_H
#define MPD_ROAR_OUTPUT_PLUGIN_H
-#include <stdbool.h>
-
-struct roar;
+struct RoarOutput;
extern const struct audio_output_plugin roar_output_plugin;
int
-roar_output_get_volume(struct roar *roar);
+roar_output_get_volume(RoarOutput *roar);
bool
-roar_output_set_volume(struct roar *roar, unsigned volume);
+roar_output_set_volume(RoarOutput *roar, unsigned volume);
#endif