mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-29 21:46:25 +02:00
Horizon: Migrate usb and psc services (#5800)
* Horizon: Migrate Usb and Psc services * Fix formatting * Adresses feedback
This commit is contained in:
parent
e768a54f17
commit
1e06b28b22
65 changed files with 715 additions and 125 deletions
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Ins
|
||||
{
|
||||
[Service("ins:r")]
|
||||
class IReceiverManager : IpcService
|
||||
{
|
||||
public IReceiverManager(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Ins
|
||||
{
|
||||
[Service("ins:s")]
|
||||
class ISenderManager : IpcService
|
||||
{
|
||||
public ISenderManager(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Ovln
|
||||
{
|
||||
[Service("ovln:rcv")]
|
||||
class IReceiverService : IpcService
|
||||
{
|
||||
public IReceiverService(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Ovln
|
||||
{
|
||||
[Service("ovln:snd")]
|
||||
class ISenderService : IpcService
|
||||
{
|
||||
public ISenderService(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Psc
|
||||
{
|
||||
[Service("psc:c")]
|
||||
class IPmControl : IpcService
|
||||
{
|
||||
public IPmControl(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Psc
|
||||
{
|
||||
[Service("psc:m")]
|
||||
class IPmService : IpcService
|
||||
{
|
||||
public IPmService(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Psc
|
||||
{
|
||||
[Service("psc:l")] // 9.0.0+
|
||||
class IPmUnknown : IpcService
|
||||
{
|
||||
public IPmUnknown(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Srepo
|
||||
{
|
||||
[Service("srepo:a")] // 5.0.0+
|
||||
[Service("srepo:u")] // 5.0.0+
|
||||
class ISrepoService : IpcService
|
||||
{
|
||||
public ISrepoService(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Usb
|
||||
{
|
||||
[Service("usb:hs")]
|
||||
[Service("usb:hs:a")] // 7.0.0+
|
||||
class IClientRootSession : IpcService
|
||||
{
|
||||
public IClientRootSession(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Usb
|
||||
{
|
||||
[Service("usb:ds")]
|
||||
class IDsService : IpcService
|
||||
{
|
||||
public IDsService(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Usb
|
||||
{
|
||||
[Service("usb:pd:c")]
|
||||
class IPdCradleManager : IpcService
|
||||
{
|
||||
public IPdCradleManager(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Usb
|
||||
{
|
||||
[Service("usb:pd")]
|
||||
class IPdManager : IpcService
|
||||
{
|
||||
public IPdManager(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Usb
|
||||
{
|
||||
[Service("usb:pm")]
|
||||
class IPmService : IpcService
|
||||
{
|
||||
public IPmService(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Usb
|
||||
{
|
||||
[Service("usb:qdb")] // 7.0.0+
|
||||
class IUnknown1 : IpcService
|
||||
{
|
||||
public IUnknown1(ServiceCtx context) { }
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Usb
|
||||
{
|
||||
[Service("usb:obsv")] // 8.0.0+
|
||||
class IUnknown2 : IpcService
|
||||
{
|
||||
public IUnknown2(ServiceCtx context) { }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue