暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Locale.cpp 376B

1234567891011121314151617181920
  1. #include "il2cpp-config.h"
  2. #include "os/c-api/il2cpp-config-platforms.h"
  3. #include "os/Locale.h"
  4. #include "Allocator.h"
  5. #include <string>
  6. extern "C"
  7. {
  8. void UnityPalLocaleInitialize()
  9. {
  10. il2cpp::os::Locale::Initialize();
  11. }
  12. char* UnityPalGetLocale()
  13. {
  14. return Allocator::CopyToAllocatedStringBuffer(il2cpp::os::Locale::GetLocale());
  15. }
  16. }