diff options
author | Chris Robinson <[email protected]> | 2010-03-23 17:44:01 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-23 17:44:01 -0700 |
commit | 3e9934e810f18c8336665a1b057672aabf6d1e2a (patch) | |
tree | 58bb6fd7f441a89befa9b4ad67f4b8a76c9ccd69 /OpenAL32/Include/alEffect.h | |
parent | 556e9b8fee160febfffc591bb9e2efb881850252 (diff) |
Mark extension functions with AL_API/ALC_API
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 16b9af3a..2061e801 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -68,19 +68,19 @@ typedef struct ALeffect struct ALeffect *next; } ALeffect; -ALvoid AL_APIENTRY alGenEffects(ALsizei n, ALuint *effects); -ALvoid AL_APIENTRY alDeleteEffects(ALsizei n, ALuint *effects); -ALboolean AL_APIENTRY alIsEffect(ALuint effect); - -ALvoid AL_APIENTRY alEffecti(ALuint effect, ALenum param, ALint iValue); -ALvoid AL_APIENTRY alEffectiv(ALuint effect, ALenum param, ALint *piValues); -ALvoid AL_APIENTRY alEffectf(ALuint effect, ALenum param, ALfloat flValue); -ALvoid AL_APIENTRY alEffectfv(ALuint effect, ALenum param, ALfloat *pflValues); - -ALvoid AL_APIENTRY alGetEffecti(ALuint effect, ALenum param, ALint *piValue); -ALvoid AL_APIENTRY alGetEffectiv(ALuint effect, ALenum param, ALint *piValues); -ALvoid AL_APIENTRY alGetEffectf(ALuint effect, ALenum param, ALfloat *pflValue); -ALvoid AL_APIENTRY alGetEffectfv(ALuint effect, ALenum param, ALfloat *pflValues); +AL_API ALvoid AL_APIENTRY alGenEffects(ALsizei n, ALuint *effects); +AL_API ALvoid AL_APIENTRY alDeleteEffects(ALsizei n, ALuint *effects); +AL_API ALboolean AL_APIENTRY alIsEffect(ALuint effect); + +AL_API ALvoid AL_APIENTRY alEffecti(ALuint effect, ALenum param, ALint iValue); +AL_API ALvoid AL_APIENTRY alEffectiv(ALuint effect, ALenum param, ALint *piValues); +AL_API ALvoid AL_APIENTRY alEffectf(ALuint effect, ALenum param, ALfloat flValue); +AL_API ALvoid AL_APIENTRY alEffectfv(ALuint effect, ALenum param, ALfloat *pflValues); + +AL_API ALvoid AL_APIENTRY alGetEffecti(ALuint effect, ALenum param, ALint *piValue); +AL_API ALvoid AL_APIENTRY alGetEffectiv(ALuint effect, ALenum param, ALint *piValues); +AL_API ALvoid AL_APIENTRY alGetEffectf(ALuint effect, ALenum param, ALfloat *pflValue); +AL_API ALvoid AL_APIENTRY alGetEffectfv(ALuint effect, ALenum param, ALfloat *pflValues); ALvoid ReleaseALEffects(ALCdevice *device); |