summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audrec_u.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-20 05:43:00 +0100
committerLiam <byteslice@airmail.cc>2024-02-21 04:15:37 +0100
commit2e5a9cf119703a595c3e1e34aa233a9843f5871c (patch)
tree9aba42145b44b8a9787db53b8136c1d4eb79c11c /src/core/hle/service/audio/audrec_u.h
parentaudio: rewrite IAudioOutManager (diff)
downloadyuzu-2e5a9cf119703a595c3e1e34aa233a9843f5871c.tar
yuzu-2e5a9cf119703a595c3e1e34aa233a9843f5871c.tar.gz
yuzu-2e5a9cf119703a595c3e1e34aa233a9843f5871c.tar.bz2
yuzu-2e5a9cf119703a595c3e1e34aa233a9843f5871c.tar.lz
yuzu-2e5a9cf119703a595c3e1e34aa233a9843f5871c.tar.xz
yuzu-2e5a9cf119703a595c3e1e34aa233a9843f5871c.tar.zst
yuzu-2e5a9cf119703a595c3e1e34aa233a9843f5871c.zip
Diffstat (limited to 'src/core/hle/service/audio/audrec_u.h')
-rw-r--r--src/core/hle/service/audio/audrec_u.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/core/hle/service/audio/audrec_u.h b/src/core/hle/service/audio/audrec_u.h
deleted file mode 100644
index 8b4817884..000000000
--- a/src/core/hle/service/audio/audrec_u.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include "core/hle/service/service.h"
-
-namespace Core {
-class System;
-}
-
-namespace Service::Audio {
-
-class AudRecU final : public ServiceFramework<AudRecU> {
-public:
- explicit AudRecU(Core::System& system_);
- ~AudRecU() override;
-};
-
-} // namespace Service::Audio