2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Caps
|
|
|
|
{
|
|
|
|
[Service("caps:c")]
|
|
|
|
class IAlbumControlService : IpcService
|
|
|
|
{
|
|
|
|
public IAlbumControlService(ServiceCtx context) { }
|
2021-03-26 01:16:08 +01:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(33)] // 7.0.0+
|
2021-03-26 01:16:08 +01:00
|
|
|
// SetShimLibraryVersion(pid, u64, nn::applet::AppletResourceUserId)
|
|
|
|
public ResultCode SetShimLibraryVersion(ServiceCtx context)
|
|
|
|
{
|
|
|
|
return context.Device.System.CaptureManager.SetShimLibraryVersion(context);
|
|
|
|
}
|
2019-09-19 02:45:11 +02:00
|
|
|
}
|
|
|
|
}
|