aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ldn
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ldn')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs8
-rw-r--r--Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs8
-rw-r--r--Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs8
-rw-r--r--Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs9
4 files changed, 33 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs
new file mode 100644
index 00000000..09dfa78f
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.HLE.HOS.Services.Ldn
+{
+ [Service("ldn:m")]
+ class IMonitorServiceCreator : IpcService
+ {
+ public IMonitorServiceCreator(ServiceCtx context) { }
+ }
+} \ No newline at end of file
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs
new file mode 100644
index 00000000..b4dac449
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.HLE.HOS.Services.Ldn
+{
+ [Service("ldn:s")]
+ class ISystemServiceCreator : IpcService
+ {
+ public ISystemServiceCreator(ServiceCtx context) { }
+ }
+} \ No newline at end of file
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs
new file mode 100644
index 00000000..052727dd
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.HLE.HOS.Services.Ldn
+{
+ [Service("ldn:u")]
+ class IUserServiceCreator : IpcService
+ {
+ public IUserServiceCreator(ServiceCtx context) { }
+ }
+} \ No newline at end of file
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs
new file mode 100644
index 00000000..9c9ee3be
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs
@@ -0,0 +1,9 @@
+namespace Ryujinx.HLE.HOS.Services.Ldn.Lp2p
+{
+ [Service("lp2p:app")] // 9.0.0+
+ [Service("lp2p:sys")] // 9.0.0+
+ class IServiceCreator : IpcService
+ {
+ public IServiceCreator(ServiceCtx context) { }
+ }
+} \ No newline at end of file