summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/caps/caps_u.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-09-30 13:12:21 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-09-30 13:19:46 +0200
commit7d287a6fb01114da166fcbc29e3c57f1df22da57 (patch)
treee58e69aeb34092cba62ce6d8086c539c18e6f9a0 /src/core/hle/service/caps/caps_u.cpp
parentcaps_su: Properly stub SetShimLibraryVersion (diff)
downloadyuzu-7d287a6fb01114da166fcbc29e3c57f1df22da57.tar
yuzu-7d287a6fb01114da166fcbc29e3c57f1df22da57.tar.gz
yuzu-7d287a6fb01114da166fcbc29e3c57f1df22da57.tar.bz2
yuzu-7d287a6fb01114da166fcbc29e3c57f1df22da57.tar.lz
yuzu-7d287a6fb01114da166fcbc29e3c57f1df22da57.tar.xz
yuzu-7d287a6fb01114da166fcbc29e3c57f1df22da57.tar.zst
yuzu-7d287a6fb01114da166fcbc29e3c57f1df22da57.zip
Diffstat (limited to 'src/core/hle/service/caps/caps_u.cpp')
-rw-r--r--src/core/hle/service/caps/caps_u.cpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/core/hle/service/caps/caps_u.cpp b/src/core/hle/service/caps/caps_u.cpp
index f36d8de2d..8e2b83629 100644
--- a/src/core/hle/service/caps/caps_u.cpp
+++ b/src/core/hle/service/caps/caps_u.cpp
@@ -31,8 +31,7 @@ public:
CAPS_U::CAPS_U() : ServiceFramework("caps:u") {
// clang-format off
static const FunctionInfo functions[] = {
- {31, nullptr, "GetShimLibraryVersion"},
- {32, nullptr, "SetShimLibraryVersion"},
+ {32, &CAPS_U::SetShimLibraryVersion, "SetShimLibraryVersion"},
{102, &CAPS_U::GetAlbumContentsFileListForApplication, "GetAlbumContentsFileListForApplication"},
{103, nullptr, "DeleteAlbumContentsFileForApplication"},
{104, nullptr, "GetAlbumContentsFileSizeForApplication"},
@@ -53,6 +52,18 @@ CAPS_U::CAPS_U() : ServiceFramework("caps:u") {
CAPS_U::~CAPS_U() = default;
+void CAPS_U::SetShimLibraryVersion(Kernel::HLERequestContext& ctx) {
+ IPC::RequestParser rp{ctx};
+ const auto library_version{rp.Pop<u64>()};
+ const auto applet_resource_user_id{rp.Pop<u64>()};
+
+ LOG_WARNING(Service_Capture, "(STUBBED) called. library_version={}, applet_resource_user_id={}",
+ library_version, applet_resource_user_id);
+
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(RESULT_SUCCESS);
+}
+
void CAPS_U::GetAlbumContentsFileListForApplication(Kernel::HLERequestContext& ctx) {
// Takes a type-0x6 output buffer containing an array of ApplicationAlbumFileEntry, a PID, an
// u8 ContentType, two s64s, and an u64 AppletResourceUserId. Returns an output u64 for total