diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-01 15:56:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-01 15:56:39 -0400 |
| commit | bd14f397ce142f4552018554532ceb230e12bde5 (patch) | |
| tree | e5eeecea0c234828c669233cea09187da3c8ed74 /src/core/hle/service/aoc/aoc_u.h | |
| parent | 393042c09c38246a134cb89c077b19a409f3566e (diff) | |
| parent | f72046099ac1bce64017e6940daba6ee2ce8e9fb (diff) | |
Merge pull request #1407 from DarkLordZach/dlc
aoc_u: Implement functions and add support for DLC loading
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.h | 4 |
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. |
