summaryrefslogtreecommitdiff
path: root/Libraries/LibAudio/ASAPI.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibAudio/ASAPI.h')
-rw-r--r--Libraries/LibAudio/ASAPI.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Libraries/LibAudio/ASAPI.h b/Libraries/LibAudio/ASAPI.h
index 227aee1027..0dabd28c86 100644
--- a/Libraries/LibAudio/ASAPI.h
+++ b/Libraries/LibAudio/ASAPI.h
@@ -6,10 +6,12 @@ struct ASAPI_ServerMessage {
Greeting,
PlayingBuffer,
FinishedPlayingBuffer,
+ EnqueueBufferResponse,
};
Type type { Type::Invalid };
unsigned extra_size { 0 };
+ bool success { true };
union {
struct {
@@ -27,6 +29,7 @@ struct ASAPI_ClientMessage {
Invalid,
Greeting,
PlayBuffer,
+ EnqueueBuffer,
};
Type type { Type::Invalid };