ICU.h 797 B

1234567891011121314151617181920
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. #ifdef INTL_ICU // TODO(jahorto): this needs to eventually be HAS_ICU, but HAS_ICU (HAS_REAL_ICU) and ENABLE_GLOBALIZATION conflict
  7. #ifdef WINDOWS10_ICU
  8. #include <icu.h>
  9. #else
  10. #define U_STATIC_IMPLEMENTATION 1
  11. #define U_SHOW_CPLUSPLUS_API 0
  12. #include "unicode/ucal.h"
  13. #include "unicode/ucol.h"
  14. #include "unicode/udat.h"
  15. #include "unicode/udatpg.h"
  16. #include "unicode/uloc.h"
  17. #include "unicode/unumsys.h"
  18. #endif
  19. #endif