mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 14:49:59 +00:00
caps_u: Stub SetShimLibraryVersion
- Used in Super Smash Bros. Ultimate
This commit is contained in:
parent
9a251339dc
commit
7d287a6fb0
2 changed files with 14 additions and 2 deletions
|
@ -31,8 +31,7 @@ public:
|
||||||
CAPS_U::CAPS_U() : ServiceFramework("caps:u") {
|
CAPS_U::CAPS_U() : ServiceFramework("caps:u") {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{31, nullptr, "GetShimLibraryVersion"},
|
{32, &CAPS_U::SetShimLibraryVersion, "SetShimLibraryVersion"},
|
||||||
{32, nullptr, "SetShimLibraryVersion"},
|
|
||||||
{102, &CAPS_U::GetAlbumContentsFileListForApplication, "GetAlbumContentsFileListForApplication"},
|
{102, &CAPS_U::GetAlbumContentsFileListForApplication, "GetAlbumContentsFileListForApplication"},
|
||||||
{103, nullptr, "DeleteAlbumContentsFileForApplication"},
|
{103, nullptr, "DeleteAlbumContentsFileForApplication"},
|
||||||
{104, nullptr, "GetAlbumContentsFileSizeForApplication"},
|
{104, nullptr, "GetAlbumContentsFileSizeForApplication"},
|
||||||
|
@ -53,6 +52,18 @@ CAPS_U::CAPS_U() : ServiceFramework("caps:u") {
|
||||||
|
|
||||||
CAPS_U::~CAPS_U() = default;
|
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) {
|
void CAPS_U::GetAlbumContentsFileListForApplication(Kernel::HLERequestContext& ctx) {
|
||||||
// Takes a type-0x6 output buffer containing an array of ApplicationAlbumFileEntry, a PID, an
|
// 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
|
// u8 ContentType, two s64s, and an u64 AppletResourceUserId. Returns an output u64 for total
|
||||||
|
|
|
@ -18,6 +18,7 @@ public:
|
||||||
~CAPS_U() override;
|
~CAPS_U() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void SetShimLibraryVersion(Kernel::HLERequestContext& ctx);
|
||||||
void GetAlbumContentsFileListForApplication(Kernel::HLERequestContext& ctx);
|
void GetAlbumContentsFileListForApplication(Kernel::HLERequestContext& ctx);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue