mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 12:45:06 +00:00
12 lines
285 B
Text
12 lines
285 B
Text
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)
|
|
}
|