IBtmUser.cs 494 B

12345678910111213141516171819
  1. using Ryujinx.HLE.HOS.Services.BluetoothManager.BtmUser;
  2. namespace Ryujinx.HLE.HOS.Services.BluetoothManager
  3. {
  4. [Service("btm:u")] // 5.0.0+
  5. class IBtmUser : IpcService
  6. {
  7. public IBtmUser(ServiceCtx context) { }
  8. [Command(0)] // 5.0.0+
  9. // GetCore() -> object<nn::btm::IBtmUserCore>
  10. public ResultCode GetCore(ServiceCtx context)
  11. {
  12. MakeObject(context, new IBtmUserCore());
  13. return ResultCode.Success;
  14. }
  15. }
  16. }