summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/storage.h')
-rw-r--r--src/core/hle/service/am/storage.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/core/hle/service/am/storage.h b/src/core/hle/service/am/storage.h
deleted file mode 100644
index 10d00b141..000000000
--- a/src/core/hle/service/am/storage.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include "core/hle/service/service.h"
-
-namespace Service::AM {
-
-class LibraryAppletStorage;
-
-class IStorage final : public ServiceFramework<IStorage> {
-public:
- explicit IStorage(Core::System& system_, std::shared_ptr<LibraryAppletStorage> impl_);
- explicit IStorage(Core::System& system_, std::vector<u8>&& buffer);
- ~IStorage() override;
-
- std::shared_ptr<LibraryAppletStorage> GetImpl() const {
- return impl;
- }
-
- std::vector<u8> GetData() const;
-
-private:
- void Open(HLERequestContext& ctx);
- void OpenTransferStorage(HLERequestContext& ctx);
-
- const std::shared_ptr<LibraryAppletStorage> impl;
-};
-
-} // namespace Service::AM