aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/aoc/aoc_u.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-09-26 22:17:09 -0400
committerZach Hilman <zachhilman@gmail.com>2018-09-30 21:01:35 -0400
commit62225ae050f0e3c0eee4eb691021cd4825efbed0 (patch)
treea6a7f97f2e3d24b7a87e15a00eba66b1e90a8b9c /src/core/hle/service/aoc/aoc_u.h
parentaa0c82e40534f68ef6dd8d9d881a14ed298b19a0 (diff)
aoc_u: Implement Count, List and Prepare AddOnContent
Commands #2, #3, and #7
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
-rw-r--r--src/core/hle/service/aoc/aoc_u.h3
1 files changed, 3 insertions, 0 deletions
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<u64> add_on_content;
};
/// Registers all AOC services with the specified service manager.