diff options
author | Chris Robinson <[email protected]> | 2008-01-15 16:01:27 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-01-15 16:01:27 -0800 |
commit | 707e5968115f99afd6efe6b0f61d8bbf0baa7a94 (patch) | |
tree | 401debc157883085166993273d0bfcf8a4a1a743 /OpenAL32/Include/alAuxEffectSlot.h | |
parent | 5678041b926d1a6dd74cdef0b97face79879a461 (diff) |
Don't append _struct to the effect slot struct name
Diffstat (limited to 'OpenAL32/Include/alAuxEffectSlot.h')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index e34d787d..5d389193 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -14,7 +14,7 @@ extern "C" { #define AL_EFFECTSLOT_NULL 0x0000 -typedef struct ALeffectslot_struct +typedef struct ALeffectslot { ALeffect effect; @@ -24,7 +24,7 @@ typedef struct ALeffectslot_struct // Index to itself ALuint effectslot; - struct ALeffectslot_struct *next; + struct ALeffectslot *next; } ALeffectslot; AL_API ALvoid AL_APIENTRY alGenAuxiliaryEffectSlots(ALsizei n, ALuint *effectslots); |