JsonInteger.hpp 532 B

1234567891011121314151617181920212223242526
  1. // Copyright Benoit Blanchon 2014-2016
  2. // MIT License
  3. //
  4. // Arduino JSON library
  5. // https://github.com/bblanchon/ArduinoJson
  6. // If you like this project, please add a star!
  7. #pragma once
  8. #include "../Configuration.hpp"
  9. namespace ArduinoJson {
  10. namespace Internals {
  11. #if ARDUINOJSON_USE_LONG_LONG
  12. typedef long long JsonInteger;
  13. typedef unsigned long long JsonUInt;
  14. #elif ARDUINOJSON_USE_INT64
  15. typedef __int64 JsonInteger;
  16. typedef unsigned _int64 JsonUInt;
  17. #else
  18. typedef long JsonInteger;
  19. typedef unsigned long JsonUInt;
  20. #endif
  21. }
  22. }