1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

IPCCompiler+AudioServer: Accept "//"-style comments in IPC defintions

This commit is contained in:
Andreas Kling 2019-08-03 21:29:09 +02:00
parent 0f0b00dc1f
commit 3100e8dee5
2 changed files with 10 additions and 3 deletions

View file

@ -1,9 +1,12 @@
endpoint AudioServer
{
// Basic protocol
Greet(i32 client_pid) => (i32 server_pid, i32 client_id)
// Mixer functions
GetMainMixVolume() => (i32 volume)
SetMainMixVolume(i32 volume) => ()
// Buffer playback
EnqueueBuffer(i32 buffer_id) => (bool success)
}