aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Fatal
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Fatal')
-rw-r--r--Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs8
-rw-r--r--Ryujinx.HLE/HOS/Services/Fatal/IService.cs8
2 files changed, 16 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs b/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs
new file mode 100644
index 00000000..eb2c9553
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.HLE.HOS.Services.Fatal
+{
+ [Service("fatal:p")]
+ class IPrivateService : IpcService
+ {
+ public IPrivateService(ServiceCtx context) { }
+ }
+} \ No newline at end of file
diff --git a/Ryujinx.HLE/HOS/Services/Fatal/IService.cs b/Ryujinx.HLE/HOS/Services/Fatal/IService.cs
new file mode 100644
index 00000000..692d2b0b
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Services/Fatal/IService.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.HLE.HOS.Services.Fatal
+{
+ [Service("fatal:u")]
+ class IService : IpcService
+ {
+ public IService(ServiceCtx context) { }
+ }
+} \ No newline at end of file