mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 19:38:54 +00:00
35 lines
887 B
C#
35 lines
887 B
C#
using ChocolArm64.Memory;
|
|
using Ryujinx.Core.OsHle.Ipc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Core.OsHle.IpcServices.Set
|
|
{
|
|
class ServiceSetSys : IIpcService
|
|
{
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
public ServiceSetSys()
|
|
{
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
{
|
|
{ 23, GetColorSetId },
|
|
{ 24, SetColorSetId }
|
|
};
|
|
}
|
|
|
|
public static long GetColorSetId(ServiceCtx Context)
|
|
{
|
|
Context.ResponseData.Write((int)Context.Ns.Settings.ThemeColor);
|
|
|
|
return 0;
|
|
}
|
|
|
|
public static long SetColorSetId(ServiceCtx Context)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
} |