prepo: Implement GetSystemSessionId and add perms (#2014)

* prepo: Implement GetSystemSessionId and add perms

* address feedbacks
This commit is contained in:
Ac_K
2021-02-11 20:24:54 +01:00
committed by GitHub
parent 0b02e08b72
commit 80ed8596c1
3 changed files with 62 additions and 8 deletions

View File

@ -7,9 +7,9 @@ namespace Ryujinx.HLE.HOS.Services.Prepo
Success = 0,
InvalidArgument = (1 << ErrorCodeShift) | ModuleId,
InvalidState = (5 << ErrorCodeShift) | ModuleId,
InvalidBufferSize = (9 << ErrorCodeShift) | ModuleId,
Unknown1 = (90 << ErrorCodeShift) | ModuleId
InvalidArgument = (1 << ErrorCodeShift) | ModuleId,
InvalidState = (5 << ErrorCodeShift) | ModuleId,
InvalidBufferSize = (9 << ErrorCodeShift) | ModuleId,
PermissionDenied = (90 << ErrorCodeShift) | ModuleId
}
}