diff options
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 78128c90..a375f6d1 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -201,6 +201,10 @@ struct ALCdevice_struct struct ALfilter *FilterList; ALuint FilterCount; + // Linked List of Databuffers for this device + struct ALdatabuffer *Databuffers; + ALuint DatabufferCount; + // Context created on this device ALCcontext *Context; @@ -231,6 +235,9 @@ struct ALCcontext_struct struct ALeffectslot *AuxiliaryEffectSlot; ALuint AuxiliaryEffectSlotCount; + struct ALdatabuffer *SampleSource; + struct ALdatabuffer *SampleSink; + ALenum LastError; ALboolean InUse; |