diff options
author | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
commit | 4d472c265ed0b3f7f61ee624c01c8ef319db7c99 (patch) | |
tree | 8ec3ea874c741c9b0e1ab70db2a96e02acec8225 /src/audio.h | |
parent | 2bbf378dd8a3f12b4b79228ce562402c29d2cd09 (diff) | |
download | mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.gz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.xz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.zip |
conf: no CamelCase, part I
Renamed functions, types, variables.
Diffstat (limited to '')
-rw-r--r-- | src/audio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio.h b/src/audio.h index c83794689..9120b9573 100644 --- a/src/audio.h +++ b/src/audio.h @@ -21,13 +21,13 @@ #include <stdbool.h> #include <stdio.h> -#include "conf.h" #define AUDIO_AO_DRIVER_DEFAULT "default" struct audio_format; struct tag; struct client; +struct config_param; unsigned int audio_output_count(void); @@ -73,6 +73,6 @@ void saveAudioDevicesState(FILE *fp); bool mixer_control_setvol(unsigned int device, int volume, int rel); bool mixer_control_getvol(unsigned int device, int *volume); -bool mixer_configure_legacy(char *name, ConfigParam *param); +bool mixer_configure_legacy(char *name, struct config_param *param); #endif |