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

19 lines
498 B
C#

using Ryujinx.HLE.HOS.Services.BluetoothManager.BtmUser;
namespace Ryujinx.HLE.HOS.Services.BluetoothManager
{
[Service("btm:u")] // 5.0.0+
class IBtmUser : IpcService
{
public IBtmUser(ServiceCtx context) { }
[CommandCmif(0)] // 5.0.0+
// GetCore() -> object<nn::btm::IBtmUserCore>
public ResultCode GetCore(ServiceCtx context)
{
MakeObject(context, new IBtmUserCore());
return ResultCode.Success;
}
}
}