diff options
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index ccfb94ac..78128c90 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -193,6 +193,14 @@ struct ALCdevice_struct struct ALbuffer *Buffers; ALuint BufferCount; + // Linked List of Effects for this device + struct ALeffect *EffectList; + ALuint EffectCount; + + // Linked List of Filters for this device + struct ALfilter *FilterList; + ALuint FilterCount; + // Context created on this device ALCcontext *Context; |