1 | /* |
---|---|
2 | * Copyright 2018 Google Inc. |
3 | * |
4 | * Use of this source code is governed by a BSD-style license that can be |
5 | * found in the LICENSE file. |
6 | */ |
7 | #ifndef load_icu_DEFINED |
8 | #define load_icu_DEFINED |
9 | |
10 | #if defined(_WIN32) && defined(SK_USING_THIRD_PARTY_ICU) |
11 | bool SkLoadICU(); |
12 | #else |
13 | static inline bool SkLoadICU() { return true; } |
14 | #endif // defined(_WIN32) && defined(SK_USING_THIRD_PARTY_ICU) |
15 | |
16 | #endif // load_icu_DEFINED |
17 |