mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 20:38:35 +00:00
80ed8596c1
* prepo: Implement GetSystemSessionId and add perms * address feedbacks
15 lines
408 B
C#
15 lines
408 B
C#
namespace Ryujinx.HLE.HOS.Services.Prepo
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 129,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
InvalidArgument = (1 << ErrorCodeShift) | ModuleId,
|
|
InvalidState = (5 << ErrorCodeShift) | ModuleId,
|
|
InvalidBufferSize = (9 << ErrorCodeShift) | ModuleId,
|
|
PermissionDenied = (90 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |