From 5f3329b2c95e2860c7ab8aeaf6d0312385a8e2f6 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 6 Sep 2008 13:45:27 -0700 Subject: Don't export extension function symbols from the lib --- OpenAL32/Include/alEffect.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'OpenAL32/Include/alEffect.h') diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 1ee4b22d..24f12c5e 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -66,19 +66,19 @@ typedef struct ALeffect_struct struct ALeffect_struct *next; } ALeffect; -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 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); ALvoid ReleaseALEffects(ALvoid); -- cgit v1.2.3