aboutsummaryrefslogtreecommitdiff
path: root/src/mixer_api.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-25 16:03:49 +0100
committerMax Kellermann <max@duempel.org>2009-01-25 16:03:49 +0100
commit5f7791009790dc40f2d76be310ffeab55c242ced (patch)
tree5e26d9d5f873a76fe61c6403a69ae123b0d57ad3 /src/mixer_api.h
parent80799fa84eb4330083e4de20b87f97beea7d6ba7 (diff)
conf: const pointers in block get functions
All config_get_block_*() functions should accept constant config_param pointers.
Diffstat (limited to 'src/mixer_api.h')
-rw-r--r--src/mixer_api.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mixer_api.h b/src/mixer_api.h
index 61f6c06f..55aa7684 100644
--- a/src/mixer_api.h
+++ b/src/mixer_api.h
@@ -28,7 +28,8 @@ struct mixer_plugin {
/**
* Setup and configure mixer
*/
- void (*configure)(struct mixer_data *data, struct config_param *param);
+ void (*configure)(struct mixer_data *data,
+ const struct config_param *param);
/**
* Open mixer device
@@ -53,7 +54,7 @@ struct mixer {
void mixer_init(struct mixer *mixer, struct mixer_plugin *plugin);
void mixer_finish(struct mixer *mixer);
-void mixer_configure(struct mixer *mixer, struct config_param *param);
+void mixer_configure(struct mixer *mixer, const struct config_param *param);
bool mixer_open(struct mixer *mixer);
bool mixer_control(struct mixer *mixer, int cmd, void *arg);
void mixer_close(struct mixer *mixer);