blob: 00de51e7e5e40ff6cf9fee1910997f25912fd191 [file] [log] [blame]
Hal Canary0e07ad72018-02-08 13:06:56 -05001/*
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
Hal Canary61021922019-02-06 12:29:11 -050010#if defined(_WIN32) && defined(SK_USING_THIRD_PARTY_ICU)
11bool SkLoadICU();
Hal Canary0e07ad72018-02-08 13:06:56 -050012#else
Hal Canary61021922019-02-06 12:29:11 -050013static inline bool SkLoadICU() { return true; }
14#endif // defined(_WIN32) && defined(SK_USING_THIRD_PARTY_ICU)
Hal Canary0e07ad72018-02-08 13:06:56 -050015
Hal Canary61021922019-02-06 12:29:11 -050016#endif // load_icu_DEFINED