hle: Fix some inconsistencies in namespace naming in Services (#808)
Also fix IShopServiceAccessSystemInterface being in the wrong namespace.
This commit is contained in:
parent
9426ef3f06
commit
b29950dbd6
38 changed files with 40 additions and 40 deletions
19
Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs
Normal file
19
Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
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) { }
|
||||
|
||||
[Command(0)] // 5.0.0+
|
||||
// GetCore() -> object<nn::btm::IBtmUserCore>
|
||||
public ResultCode GetCore(ServiceCtx context)
|
||||
{
|
||||
MakeObject(context, new IBtmUserCore());
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue