diff options
author | Max Kellermann <max@duempel.org> | 2009-02-16 18:40:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-16 18:40:04 +0100 |
commit | 02c99d7716a803f97f43da59219c6fd9e02c3804 (patch) | |
tree | 7d1e48ead1d54a8cb7cc9a25d47b59b2d3432c60 /src/mixer_api.h | |
parent | 46c15e4ab3aa4b0a973345afe704e80c2e8122e9 (diff) | |
download | mpd-02c99d7716a803f97f43da59219c6fd9e02c3804.tar.gz mpd-02c99d7716a803f97f43da59219c6fd9e02c3804.tar.xz mpd-02c99d7716a803f97f43da59219c6fd9e02c3804.zip |
mixer: include cleanup
Don't include conf.h in mixer_api.h. Use a forward struct declaration
instead.
Diffstat (limited to 'src/mixer_api.h')
-rw-r--r-- | src/mixer_api.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mixer_api.h b/src/mixer_api.h index 8dbbbe820..48f962ed7 100644 --- a/src/mixer_api.h +++ b/src/mixer_api.h @@ -19,7 +19,7 @@ #ifndef MPD_MIXER_H #define MPD_MIXER_H -#include "conf.h" +#include <stdbool.h> /* * list of currently implemented mixers @@ -28,6 +28,8 @@ extern const struct mixer_plugin alsa_mixer; extern const struct mixer_plugin oss_mixer; +struct config_param; + struct mixer_plugin { /** * Alocates and configures a mixer device. |