NfpError.cs 189 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
  2. {
  3. static class NfpError
  4. {
  5. public const int DeviceNotFound = 64;
  6. public const int DevicesBufferIsNull = 65;
  7. }
  8. }