AudioServer: The EnqueueBuffer response needs a success boolean

This was already in the current version of the code, I'm just updating
the soon-to-be-current IPC protocol version of it. :^)
This commit is contained in:
Andreas Kling 2019-08-03 16:41:12 +02:00
commit 4fc15c9e6e
Notes: sideshowbarker 2024-07-19 12:55:17 +09:00

View file

@ -5,5 +5,5 @@ endpoint AudioServer
GetMainMixVolume() => (i32 volume)
SetMainMixVolume(i32 volume) => ()
EnqueueBuffer(i32 buffer_id) => ()
EnqueueBuffer(i32 buffer_id) => (bool success)
}