Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: source/common/unicode/utypes.h

Issue 926113004: Move stubdata.c from icudata to icuuc (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« icu.gyp ('K') | « patches/data_symb.patch ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ********************************************************************** 2 **********************************************************************
3 * Copyright (C) 1996-2014, International Business Machines 3 * Copyright (C) 1996-2014, International Business Machines
4 * Corporation and others. All Rights Reserved. 4 * Corporation and others. All Rights Reserved.
5 ********************************************************************** 5 **********************************************************************
6 * 6 *
7 * FILE NAME : UTYPES.H (formerly ptypes.h) 7 * FILE NAME : UTYPES.H (formerly ptypes.h)
8 * 8 *
9 * Date Name Description 9 * Date Name Description
10 * 12/11/96 helena Creation. 10 * 12/11/96 helena Creation.
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 #define U_TOOLUTIL_API U_EXPORT 298 #define U_TOOLUTIL_API U_EXPORT
299 #elif defined(U_STATIC_IMPLEMENTATION) 299 #elif defined(U_STATIC_IMPLEMENTATION)
300 #define U_DATA_API 300 #define U_DATA_API
301 #define U_COMMON_API 301 #define U_COMMON_API
302 #define U_I18N_API 302 #define U_I18N_API
303 #define U_LAYOUT_API 303 #define U_LAYOUT_API
304 #define U_LAYOUTEX_API 304 #define U_LAYOUTEX_API
305 #define U_IO_API 305 #define U_IO_API
306 #define U_TOOLUTIL_API 306 #define U_TOOLUTIL_API
307 #elif defined(U_COMMON_IMPLEMENTATION) 307 #elif defined(U_COMMON_IMPLEMENTATION)
308 #if defined(U_ICUDATAENTRY_IN_COMMON)
309 #define U_DATA_API U_EXPORT
310 #else
308 #define U_DATA_API U_IMPORT 311 #define U_DATA_API U_IMPORT
312 #endif
309 #define U_COMMON_API U_EXPORT 313 #define U_COMMON_API U_EXPORT
310 #define U_I18N_API U_IMPORT 314 #define U_I18N_API U_IMPORT
311 #define U_LAYOUT_API U_IMPORT 315 #define U_LAYOUT_API U_IMPORT
312 #define U_LAYOUTEX_API U_IMPORT 316 #define U_LAYOUTEX_API U_IMPORT
313 #define U_IO_API U_IMPORT 317 #define U_IO_API U_IMPORT
314 #define U_TOOLUTIL_API U_IMPORT 318 #define U_TOOLUTIL_API U_IMPORT
315 #elif defined(U_I18N_IMPLEMENTATION) 319 #elif defined(U_I18N_IMPLEMENTATION)
316 #define U_DATA_API U_IMPORT 320 #define U_DATA_API U_IMPORT
317 #define U_COMMON_API U_IMPORT 321 #define U_COMMON_API U_IMPORT
318 #define U_I18N_API U_EXPORT 322 #define U_I18N_API U_EXPORT
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 * Return a string for a UErrorCode value. 719 * Return a string for a UErrorCode value.
716 * The string will be the same as the name of the error code constant 720 * The string will be the same as the name of the error code constant
717 * in the UErrorCode enum above. 721 * in the UErrorCode enum above.
718 * @stable ICU 2.0 722 * @stable ICU 2.0
719 */ 723 */
720 U_STABLE const char * U_EXPORT2 724 U_STABLE const char * U_EXPORT2
721 u_errorName(UErrorCode code); 725 u_errorName(UErrorCode code);
722 726
723 727
724 #endif /* _UTYPES */ 728 #endif /* _UTYPES */
OLDNEW
« icu.gyp ('K') | « patches/data_symb.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698