IAlbumApplicationService.cs 512 B

1234567891011121314151617
  1. using Ryujinx.Common.Logging;
  2. namespace Ryujinx.HLE.HOS.Services.Caps
  3. {
  4. [Service("caps:u")]
  5. class IAlbumApplicationService : IpcService
  6. {
  7. public IAlbumApplicationService(ServiceCtx context) { }
  8. [CommandHipc(32)] // 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. }