mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:48:40 +00:00
29 lines
873 B
C#
29 lines
873 B
C#
|
using Ryujinx.HLE.HOS.Ipc;
|
|||
|
using Ryujinx.HLE.HOS.Services.Set;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Services.Bluetooth
|
|||
|
{
|
|||
|
[Service("bt")]
|
|||
|
class IBluetoothUser : IpcService
|
|||
|
{
|
|||
|
public IBluetoothUser(ServiceCtx context) { }
|
|||
|
|
|||
|
[Command(9)]
|
|||
|
// RegisterBleEvent(pid) -> handle<copy>
|
|||
|
public ResultCode RegisterBleEvent(ServiceCtx context)
|
|||
|
{
|
|||
|
NxSettings.Settings.TryGetValue("bluetooth_debug!skip_boot", out object debugMode);
|
|||
|
|
|||
|
if ((bool)debugMode)
|
|||
|
{
|
|||
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(BluetoothEventManager.RegisterBleDebugEventHandle);
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(BluetoothEventManager.RegisterBleEventHandle);
|
|||
|
}
|
|||
|
|
|||
|
return ResultCode.Success;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|