diff options
author | mailwl <mailwl@gmail.com> | 2018-02-20 08:27:32 +0100 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2018-02-20 08:30:12 +0100 |
commit | 46931a95660e73acf971a26bb7f341af6e40d4c8 (patch) | |
tree | f1bed354e38edb1732f321ad471d7fe80a2cbefa /src/core | |
parent | Merge pull request #202 from bunnei/scheduler-cleanup (diff) | |
download | yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.gz yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.bz2 yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.lz yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.xz yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.zst yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/aoc/aoc_u.cpp | 25 | ||||
-rw-r--r-- | src/core/hle/service/aoc/aoc_u.h | 3 |
2 files changed, 26 insertions, 2 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp index 260683201..430b2a7ad 100644 --- a/src/core/hle/service/aoc/aoc_u.cpp +++ b/src/core/hle/service/aoc/aoc_u.cpp @@ -2,16 +2,37 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include "common/logging/log.h" +#include "core/hle/ipc_helpers.h" #include "core/hle/service/aoc/aoc_u.h" namespace Service { namespace AOC { +AOC_U::AOC_U() : ServiceFramework("aoc:u") { + static const FunctionInfo functions[] = { + {0, nullptr, "CountAddOnContentByApplicationId"}, + {1, nullptr, "ListAddOnContentByApplicationId"}, + {2, nullptr, "CountAddOnContent"}, + {3, &AOC_U::ListAddOnContent, "ListAddOnContent"}, + {4, nullptr, "GetAddOnContentBaseIdByApplicationId"}, + {5, nullptr, "GetAddOnContentBaseId"}, + {6, nullptr, "PrepareAddOnContentByApplicationId"}, + {7, nullptr, "PrepareAddOnContent"}, + }; + RegisterHandlers(functions); +} + +void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) { + IPC::ResponseBuilder rb{ctx, 4}; + rb.Push(RESULT_SUCCESS); + rb.Push<u64>(0); + LOG_WARNING(Service_AOC, "(STUBBED) called"); +} + void InstallInterfaces(SM::ServiceManager& service_manager) { std::make_shared<AOC_U>()->InstallAsService(service_manager); } -AOC_U::AOC_U() : ServiceFramework("aoc:u") {} - } // namespace AOC } // namespace Service diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h index 0cbbf1e5d..4d6720a9d 100644 --- a/src/core/hle/service/aoc/aoc_u.h +++ b/src/core/hle/service/aoc/aoc_u.h @@ -13,6 +13,9 @@ class AOC_U final : public ServiceFramework<AOC_U> { public: AOC_U(); ~AOC_U() = default; + +private: + void ListAddOnContent(Kernel::HLERequestContext& ctx); }; /// Registers all AOC services with the specified service manager. |