MuskLocaleUtil.h 426 B

12345678910111213141516
  1. /* Locale utility functions for Maps Unity SDK on iOS. */
  2. #ifndef MUSK_LOCALE_UTIL_H_ /* NOLINT(build/header_guard) */
  3. #define MUSK_LOCALE_UTIL_H_
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif /* __cplusplus */
  7. // Gets the ISO 3166-1 alpha-2 country code for this device's locale.
  8. char* MuskGetLocaleRegion();
  9. #ifdef __cplusplus
  10. }
  11. #endif /* __cplusplus */
  12. #endif /* MUSK_LOCALE_UTIL_H_ */ /* NOLINT(build/header_guard) */