diff options
author | Chris Robinson <[email protected]> | 2020-04-28 14:48:12 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-04-28 14:48:12 -0700 |
commit | cf64dc1103ea4a1221e70259cb09f96283f2d8fb (patch) | |
tree | b7f099879b373d1dac1e4fc58f33e9cb9e90168a /al/effect.cpp | |
parent | 2520d492a573f4994e5428e9f9c57cfed9c12616 (diff) |
Fix up some more uses of [AL[C]]void
Diffstat (limited to 'al/effect.cpp')
-rw-r--r-- | al/effect.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/al/effect.cpp b/al/effect.cpp index cb29ae8b..c8d71190 100644 --- a/al/effect.cpp +++ b/al/effect.cpp @@ -211,7 +211,7 @@ inline ALeffect *LookupEffect(ALCdevice *device, ALuint id) } // namespace -AL_API ALvoid AL_APIENTRY alGenEffects(ALsizei n, ALuint *effects) +AL_API void AL_APIENTRY alGenEffects(ALsizei n, ALuint *effects) START_API_FUNC { ContextRef context{GetContextRef()}; @@ -251,7 +251,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alDeleteEffects(ALsizei n, const ALuint *effects) +AL_API void AL_APIENTRY alDeleteEffects(ALsizei n, const ALuint *effects) START_API_FUNC { ContextRef context{GetContextRef()}; @@ -301,7 +301,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alEffecti(ALuint effect, ALenum param, ALint value) +AL_API void AL_APIENTRY alEffecti(ALuint effect, ALenum param, ALint value) START_API_FUNC { ContextRef context{GetContextRef()}; @@ -344,7 +344,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alEffectiv(ALuint effect, ALenum param, const ALint *values) +AL_API void AL_APIENTRY alEffectiv(ALuint effect, ALenum param, const ALint *values) START_API_FUNC { switch(param) @@ -374,7 +374,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alEffectf(ALuint effect, ALenum param, ALfloat value) +AL_API void AL_APIENTRY alEffectf(ALuint effect, ALenum param, ALfloat value) START_API_FUNC { ContextRef context{GetContextRef()}; @@ -397,7 +397,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alEffectfv(ALuint effect, ALenum param, const ALfloat *values) +AL_API void AL_APIENTRY alEffectfv(ALuint effect, ALenum param, const ALfloat *values) START_API_FUNC { ContextRef context{GetContextRef()}; @@ -420,7 +420,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alGetEffecti(ALuint effect, ALenum param, ALint *value) +AL_API void AL_APIENTRY alGetEffecti(ALuint effect, ALenum param, ALint *value) START_API_FUNC { ContextRef context{GetContextRef()}; @@ -445,7 +445,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alGetEffectiv(ALuint effect, ALenum param, ALint *values) +AL_API void AL_APIENTRY alGetEffectiv(ALuint effect, ALenum param, ALint *values) START_API_FUNC { switch(param) @@ -475,7 +475,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alGetEffectf(ALuint effect, ALenum param, ALfloat *value) +AL_API void AL_APIENTRY alGetEffectf(ALuint effect, ALenum param, ALfloat *value) START_API_FUNC { ContextRef context{GetContextRef()}; @@ -498,7 +498,7 @@ START_API_FUNC } END_API_FUNC -AL_API ALvoid AL_APIENTRY alGetEffectfv(ALuint effect, ALenum param, ALfloat *values) +AL_API void AL_APIENTRY alGetEffectfv(ALuint effect, ALenum param, ALfloat *values) START_API_FUNC { ContextRef context{GetContextRef()}; |