diff options
author | Chris Robinson <[email protected]> | 2010-03-23 18:21:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-23 18:21:55 -0700 |
commit | 7fb4c4ce4fca4c7849f911c3a8dc7643167a1c7d (patch) | |
tree | 2fc030201738114b63361674f930db10c754afbe /OpenAL32/Include/alEffect.h | |
parent | 52834744fa4236717e45d9be588c4b4e26f562cc (diff) |
Move extension function declarations to alext.h/efx.h
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r-- | OpenAL32/Include/alEffect.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h index 2061e801..fa49e5d1 100644 --- a/OpenAL32/Include/alEffect.h +++ b/OpenAL32/Include/alEffect.h @@ -68,19 +68,6 @@ typedef struct ALeffect struct ALeffect *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 ReleaseALEffects(ALCdevice *device); |