summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/aoc/aoc_u.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-01 21:56:39 +0200
committerGitHub <noreply@github.com>2018-10-01 21:56:39 +0200
commitbd14f397ce142f4552018554532ceb230e12bde5 (patch)
treee5eeecea0c234828c669233cea09187da3c8ed74 /src/core/hle/service/aoc/aoc_u.h
parentMerge pull request #1422 from ReinUsesLisp/fixup-points (diff)
parentaoc_u: Extract AccumulateAOCTitleIDs to separate function (diff)
downloadyuzu-bd14f397ce142f4552018554532ceb230e12bde5.tar
yuzu-bd14f397ce142f4552018554532ceb230e12bde5.tar.gz
yuzu-bd14f397ce142f4552018554532ceb230e12bde5.tar.bz2
yuzu-bd14f397ce142f4552018554532ceb230e12bde5.tar.lz
yuzu-bd14f397ce142f4552018554532ceb230e12bde5.tar.xz
yuzu-bd14f397ce142f4552018554532ceb230e12bde5.tar.zst
yuzu-bd14f397ce142f4552018554532ceb230e12bde5.zip
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
-rw-r--r--src/core/hle/service/aoc/aoc_u.h4
1 files changed, 4 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..b3c7cab7a 100644
--- a/src/core/hle/service/aoc/aoc_u.h
+++ b/src/core/hle/service/aoc/aoc_u.h
@@ -16,6 +16,10 @@ public:
private:
void CountAddOnContent(Kernel::HLERequestContext& ctx);
void ListAddOnContent(Kernel::HLERequestContext& ctx);
+ void GetAddOnContentBaseId(Kernel::HLERequestContext& ctx);
+ void PrepareAddOnContent(Kernel::HLERequestContext& ctx);
+
+ std::vector<u64> add_on_content;
};
/// Registers all AOC services with the specified service manager.