diff options
author | Chris Robinson <[email protected]> | 2013-12-19 00:09:55 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-12-19 00:09:55 -0800 |
commit | 1b5c3495c993459c8bf83c183015881cba852a11 (patch) | |
tree | 33f1039e165609b51047a963fea044f7ef60cd5c /OpenAL32/Include/alMidi.h | |
parent | 1e536cf7ca6413cc20536df144bb4eba8797bbad (diff) |
Add methods to create and destroy presets
Diffstat (limited to 'OpenAL32/Include/alMidi.h')
-rw-r--r-- | OpenAL32/Include/alMidi.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMidi.h b/OpenAL32/Include/alMidi.h index 6cc13b20..db6bc730 100644 --- a/OpenAL32/Include/alMidi.h +++ b/OpenAL32/Include/alMidi.h @@ -92,6 +92,14 @@ void ALsfpreset_Construct(ALsfpreset *self); void ALsfpreset_Destruct(ALsfpreset *self); +inline struct ALsfpreset *LookupPreset(ALCdevice *device, ALuint id) +{ return (struct ALsfpreset*)LookupUIntMapKey(&device->PresetMap, id); } +inline struct ALsfpreset *RemovePreset(ALCdevice *device, ALuint id) +{ return (struct ALsfpreset*)RemoveUIntMapKey(&device->PresetMap, id); } + +void ReleaseALPresets(ALCdevice *device); + + typedef struct ALsoundfont { volatile RefCount ref; |