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

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

Issue 27079003: Use the system stdint.h on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu46/
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « patches/vs2012.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 * 3 *
4 * Copyright (C) 1997-2010, International Business Machines 4 * Copyright (C) 1997-2010, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ****************************************************************************** 7 ******************************************************************************
8 * 8 *
9 * FILE NAME : platform.h 9 * FILE NAME : platform.h
10 * 10 *
11 * Date Name Description 11 * Date Name Description
12 * 05/13/98 nos Creation (content moved here from ptypes.h). 12 * 05/13/98 nos Creation (content moved here from ptypes.h).
13 * 03/02/99 stephen Added AS400 support. 13 * 03/02/99 stephen Added AS400 support.
14 * 03/30/99 stephen Added Linux support. 14 * 03/30/99 stephen Added Linux support.
15 * 04/13/99 stephen Reworked for autoconf. 15 * 04/13/99 stephen Reworked for autoconf.
16 ****************************************************************************** 16 ******************************************************************************
17 */ 17 */
18 18
19 /** 19 /**
20 * \file 20 * \file
21 * \brief Configuration constants for the Windows platform 21 * \brief Configuration constants for the Windows platform
22 */ 22 */
23 23
24 /** Define the platform we're on. */ 24 /** Define the platform we're on. */
25 #ifndef U_WINDOWS 25 #ifndef U_WINDOWS
26 #define U_WINDOWS 26 #define U_WINDOWS
27 #endif 27 #endif
28 28
29 #if _MSC_VER >= 1700 29 #if _MSC_VER >= 1600
30 #include <stdint.h> 30 #include <stdint.h>
31 #endif 31 #endif
32 32
33 #if defined(__BORLANDC__) 33 #if defined(__BORLANDC__)
34 #define U_HAVE_PLACEMENT_NEW 0 34 #define U_HAVE_PLACEMENT_NEW 0
35 #define __STDC_CONSTANT_MACROS 35 #define __STDC_CONSTANT_MACROS
36 #endif 36 #endif
37 37
38 /** _MSC_VER is used to detect the Microsoft compiler. */ 38 /** _MSC_VER is used to detect the Microsoft compiler. */
39 #if defined(_MSC_VER) 39 #if defined(_MSC_VER)
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 /** @{ Programs used by ICU code */ 367 /** @{ Programs used by ICU code */
368 /*===========================================================================*/ 368 /*===========================================================================*/
369 369
370 #ifndef U_MAKE 370 #ifndef U_MAKE
371 #define U_MAKE "nmake" 371 #define U_MAKE "nmake"
372 #define U_MAKE_IS_NMAKE 1 372 #define U_MAKE_IS_NMAKE 1
373 #endif 373 #endif
374 374
375 /** @} */ 375 /** @} */
376 376
OLDNEW
« no previous file with comments | « patches/vs2012.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698