IAlbumControlService.cs 473 B

123456789101112131415
  1. namespace Ryujinx.HLE.HOS.Services.Caps
  2. {
  3. [Service("caps:c")]
  4. class IAlbumControlService : IpcService
  5. {
  6. public IAlbumControlService(ServiceCtx context) { }
  7. [CommandHipc(33)] // 7.0.0+
  8. // SetShimLibraryVersion(pid, u64, nn::applet::AppletResourceUserId)
  9. public ResultCode SetShimLibraryVersion(ServiceCtx context)
  10. {
  11. return context.Device.System.CaptureManager.SetShimLibraryVersion(context);
  12. }
  13. }
  14. }