ServiceAcc.cs 757 B

123456789101112131415161718192021222324252627282930313233
  1. using Ryujinx.Core.OsHle.Objects.Acc;
  2. using static Ryujinx.Core.OsHle.Objects.ObjHelper;
  3. namespace Ryujinx.Core.OsHle.Services
  4. {
  5. static partial class Service
  6. {
  7. public static long AccU0ListOpenUsers(ServiceCtx Context)
  8. {
  9. return 0;
  10. }
  11. public static long AccU0GetProfile(ServiceCtx Context)
  12. {
  13. MakeObject(Context, new IProfile());
  14. return 0;
  15. }
  16. public static long AccU0InitializeApplicationInfo(ServiceCtx Context)
  17. {
  18. return 0;
  19. }
  20. public static long AccU0GetBaasAccountManagerForApplication(ServiceCtx Context)
  21. {
  22. MakeObject(Context, new IManagerForApplication());
  23. return 0;
  24. }
  25. }
  26. }