aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs b/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
new file mode 100644
index 00000000..167dea67
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
@@ -0,0 +1,9 @@
+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) { }
+ }
+} \ No newline at end of file