aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2023-10-14 04:13:15 +0200
committerGitHub <noreply@github.com>2023-10-13 23:13:15 -0300
commit1e06b28b22848706014b18bffcec7553cdab2b2b (patch)
tree96c73f3b1aaacccf5b9ac5ffca31711cc5b71863 /src/Ryujinx.HLE/HOS/Services
parente768a54f17b390c3ac10904c7909e3bef020edbd (diff)
Horizon: Migrate usb and psc services (#5800)
* Horizon: Migrate Usb and Psc services * Fix formatting * Adresses feedback
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs9
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs9
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs8
15 files changed, 0 insertions, 122 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs b/src/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs
deleted file mode 100644
index 8ee00d0e..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Ins
-{
- [Service("ins:r")]
- class IReceiverManager : IpcService
- {
- public IReceiverManager(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs b/src/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs
deleted file mode 100644
index 239c4cc8..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Ins
-{
- [Service("ins:s")]
- class ISenderManager : IpcService
- {
- public ISenderManager(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs b/src/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs
deleted file mode 100644
index 99e929a7..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Ovln
-{
- [Service("ovln:rcv")]
- class IReceiverService : IpcService
- {
- public IReceiverService(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs b/src/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs
deleted file mode 100644
index e445c16c..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Ovln
-{
- [Service("ovln:snd")]
- class ISenderService : IpcService
- {
- public ISenderService(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs b/src/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs
deleted file mode 100644
index 6682a848..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Psc
-{
- [Service("psc:c")]
- class IPmControl : IpcService
- {
- public IPmControl(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs b/src/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs
deleted file mode 100644
index 1be33866..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Psc
-{
- [Service("psc:m")]
- class IPmService : IpcService
- {
- public IPmService(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs b/src/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs
deleted file mode 100644
index 95aff9ec..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Psc
-{
- [Service("psc:l")] // 9.0.0+
- class IPmUnknown : IpcService
- {
- public IPmUnknown(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs b/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
deleted file mode 100644
index f5467983..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
+++ /dev/null
@@ -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) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs
deleted file mode 100644
index b41b8a48..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs
+++ /dev/null
@@ -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) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs
deleted file mode 100644
index ee6c8f07..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Usb
-{
- [Service("usb:ds")]
- class IDsService : IpcService
- {
- public IDsService(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs
deleted file mode 100644
index 18cbce79..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Usb
-{
- [Service("usb:pd:c")]
- class IPdCradleManager : IpcService
- {
- public IPdCradleManager(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs
deleted file mode 100644
index 011debaf..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Usb
-{
- [Service("usb:pd")]
- class IPdManager : IpcService
- {
- public IPdManager(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs
deleted file mode 100644
index ed6bba69..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Usb
-{
- [Service("usb:pm")]
- class IPmService : IpcService
- {
- public IPmService(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs
deleted file mode 100644
index 65bf1c9f..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Usb
-{
- [Service("usb:qdb")] // 7.0.0+
- class IUnknown1 : IpcService
- {
- public IUnknown1(ServiceCtx context) { }
- }
-}
diff --git a/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs
deleted file mode 100644
index e0bf0bf4..00000000
--- a/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Usb
-{
- [Service("usb:obsv")] // 8.0.0+
- class IUnknown2 : IpcService
- {
- public IUnknown2(ServiceCtx context) { }
- }
-}