mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-27 09:22:22 -05:00
12 lines
216 B
C#
12 lines
216 B
C#
namespace Ryujinx.HLE.HOS.Services.Apm
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 148,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
InvalidParameters = (1 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |