From 4fc15c9e6eba903b657e819ef8835bf1df93ff66 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 3 Aug 2019 16:41:12 +0200 Subject: [PATCH] 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. :^) --- Servers/AudioServer/AudioServer.ipc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Servers/AudioServer/AudioServer.ipc b/Servers/AudioServer/AudioServer.ipc index 32d8e2f24d..e2b16af7a9 100644 --- a/Servers/AudioServer/AudioServer.ipc +++ b/Servers/AudioServer/AudioServer.ipc @@ -5,5 +5,5 @@ endpoint AudioServer GetMainMixVolume() => (i32 volume) SetMainMixVolume(i32 volume) => () - EnqueueBuffer(i32 buffer_id) => () + EnqueueBuffer(i32 buffer_id) => (bool success) }