2020-09-20 03:32:48 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Caps
|
|
|
|
{
|
|
|
|
[Service("caps:u")]
|
|
|
|
class IAlbumApplicationService : IpcService
|
|
|
|
{
|
|
|
|
public IAlbumApplicationService(ServiceCtx context) { }
|
2020-09-20 03:32:48 +00:00
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(32)] // 7.0.0+
|
2020-09-20 03:32:48 +00:00
|
|
|
// SetShimLibraryVersion(pid, u64, nn::applet::AppletResourceUserId)
|
|
|
|
public ResultCode SetShimLibraryVersion(ServiceCtx context)
|
|
|
|
{
|
2021-03-26 00:16:08 +00:00
|
|
|
return context.Device.System.CaptureManager.SetShimLibraryVersion(context);
|
2020-09-20 03:32:48 +00:00
|
|
|
}
|
2019-09-19 00:45:11 +00:00
|
|
|
}
|
|
|
|
}
|