diff options
author | Chris Robinson <[email protected]> | 2013-10-07 12:56:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-07 12:56:41 -0700 |
commit | fc31a414732d1b45f69f66236bb52b8226762db5 (patch) | |
tree | 045deb8197acb3afb7cfa953fde16b898a1153f6 /OpenAL32/Include | |
parent | b3841653c67276f23717b87b47899740ab0028f4 (diff) |
Constify the effect parameter of effect getters
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 89fa5381..772324cc 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -35,10 +35,10 @@ struct ALeffectVtable { void (*const setParamf)(struct ALeffect *effect, ALCcontext *context, ALenum param, ALfloat val); void (*const setParamfv)(struct ALeffect *effect, ALCcontext *context, ALenum param, const ALfloat *vals); - void (*const getParami)(struct ALeffect *effect, ALCcontext *context, ALenum param, ALint *val); - void (*const getParamiv)(struct ALeffect *effect, ALCcontext *context, ALenum param, ALint *vals); - void (*const getParamf)(struct ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *val); - void (*const getParamfv)(struct ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *vals); + void (*const getParami)(const struct ALeffect *effect, ALCcontext *context, ALenum param, ALint *val); + void (*const getParamiv)(const struct ALeffect *effect, ALCcontext *context, ALenum param, ALint *vals); + void (*const getParamf)(const struct ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *val); + void (*const getParamfv)(const struct ALeffect *effect, ALCcontext *context, ALenum param, ALfloat *vals); }; #define DEFINE_ALEFFECT_VTABLE(T) \ |