AmIWindowController.cs 349 B

1234567891011121314151617
  1. namespace Ryujinx.OsHle.Objects
  2. {
  3. class AmIWindowController
  4. {
  5. public static long GetAppletResourceUserId(ServiceCtx Context)
  6. {
  7. Context.ResponseData.Write(0L);
  8. return 0;
  9. }
  10. public static long AcquireForegroundRights(ServiceCtx Context)
  11. {
  12. return 0;
  13. }
  14. }
  15. }