mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-02 23:12:26 -05:00
Move solution and projects to src
This commit is contained in:
18
src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs
Normal file
18
src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
||||
{
|
||||
public enum ResultCode
|
||||
{
|
||||
ModuleId = 115,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
DeviceNotFound = (64 << ErrorCodeShift) | ModuleId,
|
||||
WrongArgument = (65 << ErrorCodeShift) | ModuleId,
|
||||
WrongDeviceState = (73 << ErrorCodeShift) | ModuleId,
|
||||
NfcDisabled = (80 << ErrorCodeShift) | ModuleId,
|
||||
TagNotFound = (97 << ErrorCodeShift) | ModuleId,
|
||||
ApplicationAreaIsNull = (128 << ErrorCodeShift) | ModuleId,
|
||||
ApplicationAreaAlreadyCreated = (168 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user