aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alEffect.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-08-15 09:39:18 -0700
committerChris Robinson <[email protected]>2009-08-15 09:39:18 -0700
commit510ccc7f1786bffd183f5a30c7e2e3f8e8026371 (patch)
tree8e4c33cc52d872ae50eb32debfcf6119c5791f1d /OpenAL32/Include/alEffect.h
parent43067ed2b8d4ab9c3f46b8ee002d6c3f6480cc4f (diff)
Store the effect and filter lists in the device
Diffstat (limited to 'OpenAL32/Include/alEffect.h')
-rw-r--r--OpenAL32/Include/alEffect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alEffect.h b/OpenAL32/Include/alEffect.h
index 592eb541..59b81165 100644
--- a/OpenAL32/Include/alEffect.h
+++ b/OpenAL32/Include/alEffect.h
@@ -201,7 +201,7 @@ enum {
};
extern ALboolean DisabledEffects[MAX_EFFECTS];
-typedef struct ALeffect_struct
+typedef struct ALeffect
{
// Effect type (AL_EFFECT_NULL, ...)
ALenum type;
@@ -248,7 +248,7 @@ typedef struct ALeffect_struct
// Index to itself
ALuint effect;
- struct ALeffect_struct *next;
+ struct ALeffect *next;
} ALeffect;
ALvoid AL_APIENTRY alGenEffects(ALsizei n, ALuint *effects);
@@ -265,7 +265,7 @@ 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);
+ALvoid ReleaseALEffects(ALCdevice *device);
#ifdef __cplusplus
}