From aa8a3d4a8949da4a571194b85b480a371c3390ab Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 3 Aug 2019 15:15:11 +0200 Subject: IPCCompiler: Start working on a simple IPC definition language Instead of doing everything manually in C++, let's do some codegen. This patch adds a crude but effective IPC definition parser, along with two initial definition files for the AudioServer's client and server endpoints. --- Servers/AudioServer/AudioClient.ipc | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Servers/AudioServer/AudioClient.ipc (limited to 'Servers/AudioServer/AudioClient.ipc') diff --git a/Servers/AudioServer/AudioClient.ipc b/Servers/AudioServer/AudioClient.ipc new file mode 100644 index 0000000000..52a87281b0 --- /dev/null +++ b/Servers/AudioServer/AudioClient.ipc @@ -0,0 +1,4 @@ +endpoint AudioClient +{ + FinishedPlayingBuffer(i32 buffer_id) =| +} -- cgit v1.2.3