|
|
|
@ -2,6 +2,8 @@
|
|
|
|
|
// 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/caps/caps_c.h"
|
|
|
|
|
|
|
|
|
|
namespace Service::Capture {
|
|
|
|
@ -47,7 +49,7 @@ CAPS_C::CAPS_C() : ServiceFramework("caps:c") {
|
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
|
{1, nullptr, "CaptureRawImage"},
|
|
|
|
|
{2, nullptr, "CaptureRawImageWithTimeout"},
|
|
|
|
|
{33, nullptr, "Unknown33"},
|
|
|
|
|
{33, &CAPS_C::SetShimLibraryVersion, "SetShimLibraryVersion"},
|
|
|
|
|
{1001, nullptr, "RequestTakingScreenShot"},
|
|
|
|
|
{1002, nullptr, "RequestTakingScreenShotWithTimeout"},
|
|
|
|
|
{1011, nullptr, "NotifyTakingScreenShotRefused"},
|
|
|
|
@ -72,4 +74,16 @@ CAPS_C::CAPS_C() : ServiceFramework("caps:c") {
|
|
|
|
|
|
|
|
|
|
CAPS_C::~CAPS_C() = default;
|
|
|
|
|
|
|
|
|
|
void CAPS_C::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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Service::Capture
|
|
|
|
|