Ryujinx/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs
2023-04-14 20:00:34 -03:00

15 lines
473 B
C#

namespace Ryujinx.HLE.HOS.Services.Caps
{
[Service("caps:c")]
class IAlbumControlService : IpcService
{
public IAlbumControlService(ServiceCtx context) { }
[CommandCmif(33)] // 7.0.0+
// SetShimLibraryVersion(pid, u64, nn::applet::AppletResourceUserId)
public ResultCode SetShimLibraryVersion(ServiceCtx context)
{
return context.Device.System.CaptureManager.SetShimLibraryVersion(context);
}
}
}