aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/ServiceAcc.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Core/OsHle/Services/ServiceAcc.cs')
-rw-r--r--Ryujinx.Core/OsHle/Services/ServiceAcc.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/Services/ServiceAcc.cs b/Ryujinx.Core/OsHle/Services/ServiceAcc.cs
new file mode 100644
index 00000000..f25113e5
--- /dev/null
+++ b/Ryujinx.Core/OsHle/Services/ServiceAcc.cs
@@ -0,0 +1,33 @@
+using Ryujinx.Core.OsHle.Objects.Acc;
+
+using static Ryujinx.Core.OsHle.Objects.ObjHelper;
+
+namespace Ryujinx.Core.OsHle.Services
+{
+ static partial class Service
+ {
+ public static long AccU0ListOpenUsers(ServiceCtx Context)
+ {
+ return 0;
+ }
+
+ public static long AccU0GetProfile(ServiceCtx Context)
+ {
+ MakeObject(Context, new IProfile());
+
+ return 0;
+ }
+
+ public static long AccU0InitializeApplicationInfo(ServiceCtx Context)
+ {
+ return 0;
+ }
+
+ public static long AccU0GetBaasAccountManagerForApplication(ServiceCtx Context)
+ {
+ MakeObject(Context, new IManagerForApplication());
+
+ return 0;
+ }
+ }
+} \ No newline at end of file