mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:38:33 +00:00
13 lines
291 B
C#
13 lines
291 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Sdb.Pdm
|
|||
|
{
|
|||
|
enum ResultCode
|
|||
|
{
|
|||
|
ModuleId = 178,
|
|||
|
ErrorCodeShift = 9,
|
|||
|
|
|||
|
Success = 0,
|
|||
|
|
|||
|
UserNotFound = (101 << ErrorCodeShift) | ModuleId,
|
|||
|
ServiceUnavailable = (150 << ErrorCodeShift) | ModuleId
|
|||
|
}
|
|||
|
}
|