aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/OsHle/Objects/AccIManagerForApplication.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx/OsHle/Objects/AccIManagerForApplication.cs')
-rw-r--r--Ryujinx/OsHle/Objects/AccIManagerForApplication.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Ryujinx/OsHle/Objects/AccIManagerForApplication.cs b/Ryujinx/OsHle/Objects/AccIManagerForApplication.cs
new file mode 100644
index 00000000..8e2a002b
--- /dev/null
+++ b/Ryujinx/OsHle/Objects/AccIManagerForApplication.cs
@@ -0,0 +1,17 @@
+namespace Ryujinx.OsHle.Objects
+{
+ class AccIManagerForApplication
+ {
+ public static long CheckAvailability(ServiceCtx Context)
+ {
+ return 0;
+ }
+
+ public static long GetAccountId(ServiceCtx Context)
+ {
+ Context.ResponseData.Write(0xcafeL);
+
+ return 0;
+ }
+ }
+} \ No newline at end of file