0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-20 23:41:40 +00:00
ryujinx-fork/Ryujinx.HLE/HOS/Services/Spl/Types/SmcResult.cs

20 lines
541 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Spl.Types
{
enum SmcResult
{
Success = 0,
NotImplemented = 1,
InvalidArgument = 2,
Busy = 3,
NoAsyncOperation = 4,
InvalidAsyncOperation = 5,
NotPermitted = 6,
NotInitialized = 7,
PsciSuccess = 0,
PsciNotSupported = -1,
PsciInvalidParameters = -2,
PsciDenied = -3,
PsciAlreadyOn = -4
}
}