Ryujinx/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs

15 lines
473 B
C#
Raw Normal View History

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