summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audin_u.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/audio/audin_u.h')
-rw-r--r--src/core/hle/service/audio/audin_u.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/audin_u.h b/src/core/hle/service/audio/audin_u.h
index bde8fe7b7..f2f7f9932 100644
--- a/src/core/hle/service/audio/audin_u.h
+++ b/src/core/hle/service/audio/audin_u.h
@@ -4,6 +4,7 @@
#pragma once
+#include "core/hle/kernel/k_event.h"
#include "core/hle/service/service.h"
namespace Core {
@@ -25,6 +26,8 @@ private:
void Start(Kernel::HLERequestContext& ctx);
void RegisterBufferEvent(Kernel::HLERequestContext& ctx);
void AppendAudioInBufferAuto(Kernel::HLERequestContext& ctx);
+
+ Kernel::KEvent buffer_event;
};
class AudInU final : public ServiceFramework<AudInU> {