diff options
author | Chris Robinson <[email protected]> | 2009-08-26 23:45:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-08-26 23:45:00 -0700 |
commit | 81db01ebf1d6b608339b5288785f3c514dbcff27 (patch) | |
tree | 2fbbc401ce15eb319862c7e75648bc4ceb6fc49d /Alc/portaudio.c | |
parent | 06c576a94591df6672c90ec40cb5941e4fcce756 (diff) |
Add a method to deinitialize backends
Diffstat (limited to 'Alc/portaudio.c')
-rw-r--r-- | Alc/portaudio.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Alc/portaudio.c b/Alc/portaudio.c index 4d3eb1de..01e82e73 100644 --- a/Alc/portaudio.c +++ b/Alc/portaudio.c @@ -251,3 +251,7 @@ void alc_pa_init(BackendFuncs *func_list) pa_device = AppendDeviceList("PortAudio Software"); AppendAllDeviceList(pa_device); } + +void alc_pa_deinit(void) +{ +} |