From 62225ae050f0e3c0eee4eb691021cd4825efbed0 Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Wed, 26 Sep 2018 22:17:09 -0400 Subject: aoc_u: Implement Count, List and Prepare AddOnContent Commands #2, #3, and #7 --- src/core/hle/service/aoc/aoc_u.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/core/hle/service/aoc/aoc_u.h') diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h index 29ce8f488..61e2ec75d 100644 --- a/src/core/hle/service/aoc/aoc_u.h +++ b/src/core/hle/service/aoc/aoc_u.h @@ -16,6 +16,9 @@ public: private: void CountAddOnContent(Kernel::HLERequestContext& ctx); void ListAddOnContent(Kernel::HLERequestContext& ctx); + void PrepareAddOnContent(Kernel::HLERequestContext& ctx); + + std::vector add_on_content; }; /// Registers all AOC services with the specified service manager. -- cgit v1.2.3 From 7d86a008e219f37cd6fd58175ed6e4a0739e6ea5 Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Thu, 27 Sep 2018 08:59:50 -0400 Subject: aoc_u: Implement GetAddOnContentBaseId Command #5 --- src/core/hle/service/aoc/aoc_u.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/core/hle/service/aoc/aoc_u.h') diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h index 61e2ec75d..b3c7cab7a 100644 --- a/src/core/hle/service/aoc/aoc_u.h +++ b/src/core/hle/service/aoc/aoc_u.h @@ -16,6 +16,7 @@ public: private: void CountAddOnContent(Kernel::HLERequestContext& ctx); void ListAddOnContent(Kernel::HLERequestContext& ctx); + void GetAddOnContentBaseId(Kernel::HLERequestContext& ctx); void PrepareAddOnContent(Kernel::HLERequestContext& ctx); std::vector add_on_content; -- cgit v1.2.3