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