mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-31 11:47:15 +02:00
Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
19
src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs
Normal file
19
src/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) { }
|
||||
|
||||
[CommandCmif(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