Locale.h 421 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <stdint.h>
  3. #include <string>
  4. namespace il2cpp
  5. {
  6. namespace os
  7. {
  8. class Locale
  9. {
  10. public:
  11. static void Initialize();
  12. static void UnInitialize();
  13. static std::string GetLocale();
  14. #if IL2CPP_SUPPORT_LOCALE_INDEPENDENT_PARSING
  15. static double DoubleParseLocaleIndependentImpl(char *ptr, char** endptr);
  16. #endif
  17. };
  18. } /* namespace os */
  19. } /* namespace il2cpp */