mirror of
				https://github.com/Ryujinx/Ryujinx.git
				synced 2025-11-04 00:33:41 +00:00 
			
		
		
		
	caps: Stub SetShimLibraryVersion (#1552)
This commit is contained in:
		
							parent
							
								
									66b799a6e4
								
							
						
					
					
						commit
						da3a53a29c
					
				@ -1,8 +1,22 @@
 | 
			
		||||
using Ryujinx.Common.Logging;
 | 
			
		||||
 | 
			
		||||
namespace Ryujinx.HLE.HOS.Services.Caps
 | 
			
		||||
{
 | 
			
		||||
    [Service("caps:u")]
 | 
			
		||||
    class IAlbumApplicationService : IpcService
 | 
			
		||||
    {
 | 
			
		||||
        public IAlbumApplicationService(ServiceCtx context) { }
 | 
			
		||||
 | 
			
		||||
        [Command(32)] // 7.0.0+
 | 
			
		||||
        // SetShimLibraryVersion(pid, u64, nn::applet::AppletResourceUserId)
 | 
			
		||||
        public ResultCode SetShimLibraryVersion(ServiceCtx context)
 | 
			
		||||
        {
 | 
			
		||||
            ulong shimLibraryVersion   = context.RequestData.ReadUInt64();
 | 
			
		||||
            ulong appletResourceUserId = context.RequestData.ReadUInt64();
 | 
			
		||||
 | 
			
		||||
            Logger.Stub?.PrintStub(LogClass.ServiceCaps, new { shimLibraryVersion, appletResourceUserId });
 | 
			
		||||
 | 
			
		||||
            return ResultCode.Success;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,8 +1,22 @@
 | 
			
		||||
namespace Ryujinx.HLE.HOS.Services.Caps
 | 
			
		||||
using Ryujinx.Common.Logging;
 | 
			
		||||
 | 
			
		||||
namespace Ryujinx.HLE.HOS.Services.Caps
 | 
			
		||||
{
 | 
			
		||||
    [Service("caps:su")] // 6.0.0+
 | 
			
		||||
    class IScreenShotApplicationService : IpcService
 | 
			
		||||
    {
 | 
			
		||||
        public IScreenShotApplicationService(ServiceCtx context) { }
 | 
			
		||||
 | 
			
		||||
        [Command(32)] // 7.0.0+
 | 
			
		||||
        // SetShimLibraryVersion(pid, u64, nn::applet::AppletResourceUserId)
 | 
			
		||||
        public ResultCode SetShimLibraryVersion(ServiceCtx context)
 | 
			
		||||
        {
 | 
			
		||||
            ulong shimLibraryVersion   = context.RequestData.ReadUInt64();
 | 
			
		||||
            ulong appletResourceUserId = context.RequestData.ReadUInt64();
 | 
			
		||||
 | 
			
		||||
            Logger.Stub?.PrintStub(LogClass.ServiceCaps, new { shimLibraryVersion, appletResourceUserId });
 | 
			
		||||
 | 
			
		||||
            return ResultCode.Success;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user