diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-24 12:48:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-24 12:48:26 -0500 |
| commit | dcf7698924867dbf1fffd0e0cf9f91dd1f7323a9 (patch) | |
| tree | 2556d5d884e8928bb322220035b319ad4708acfb /src/core/hle/service/aoc/aoc_u.h | |
| parent | 7b68d7d46792d9e59e0860a94a8a127f735b734d (diff) | |
| parent | 2786d34dd7c03f493b0cdc220189446f63646dfe (diff) | |
Merge pull request #13081 from FearlessTobi/aoc-ipc
aoc: Migrate to use cmif serialization
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h deleted file mode 100644 index 12ccfeb6a..000000000 --- a/src/core/hle/service/aoc/aoc_u.h +++ /dev/null @@ -1,45 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "core/hle/service/kernel_helpers.h" -#include "core/hle/service/service.h" - -namespace Core { -class System; -} - -namespace Kernel { -class KEvent; -} - -namespace Service::AOC { - -class AOC_U final : public ServiceFramework<AOC_U> { -public: - explicit AOC_U(Core::System& system); - ~AOC_U() override; - -private: - void CountAddOnContent(HLERequestContext& ctx); - void ListAddOnContent(HLERequestContext& ctx); - void GetAddOnContentBaseId(HLERequestContext& ctx); - void PrepareAddOnContent(HLERequestContext& ctx); - void GetAddOnContentListChangedEvent(HLERequestContext& ctx); - void GetAddOnContentListChangedEventWithProcessId(HLERequestContext& ctx); - void NotifyMountAddOnContent(HLERequestContext& ctx); - void NotifyUnmountAddOnContent(HLERequestContext& ctx); - void CheckAddOnContentMountStatus(HLERequestContext& ctx); - void CreateEcPurchasedEventManager(HLERequestContext& ctx); - void CreatePermanentEcPurchasedEventManager(HLERequestContext& ctx); - - std::vector<u64> add_on_content; - KernelHelpers::ServiceContext service_context; - - Kernel::KEvent* aoc_change_event; -}; - -void LoopProcess(Core::System& system); - -} // namespace Service::AOC |
