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
parent 36b352554e
commit 4fc15c9e6e

View file

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