diff options
author | Chris Robinson <[email protected]> | 2009-05-29 13:30:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-05-29 13:30:50 -0700 |
commit | 74dc7090fdf4084fae1824986e382fde4535ae7c (patch) | |
tree | 7aa7485bba3a17a9449c65432af7a360cb879d8d /OpenAL32/Include/alEcho.h | |
parent | e12ac95d6926c0b576775d2817f2e829c153947b (diff) |
Don't expose effect-specific structures
Diffstat (limited to 'OpenAL32/Include/alEcho.h')
-rw-r--r-- | OpenAL32/Include/alEcho.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/OpenAL32/Include/alEcho.h b/OpenAL32/Include/alEcho.h deleted file mode 100644 index 34896ea7..00000000 --- a/OpenAL32/Include/alEcho.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef AL_ECHO_H -#define AL_ECHO_H - -#include "AL/al.h" -#include "AL/alc.h" -#include "alMain.h" -#include "alEffect.h" - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct ALechoState ALechoState; - -ALechoState *EchoCreate(ALCcontext *Context); -ALvoid EchoDestroy(ALechoState *State); -ALvoid EchoUpdate(ALCcontext *Context, struct ALeffectslot *Slot, ALeffect *Effect); -ALvoid EchoProcess(ALechoState *State, ALuint SamplesToDo, const ALfloat *SamplesIn, ALfloat (*SamplesOut)[OUTPUTCHANNELS]); - -#ifdef __cplusplus -} -#endif - -#endif |