| OLD | NEW |
| 1 /* | 1 /* |
| 2 ****************************************************************************** | 2 ****************************************************************************** |
| 3 * | 3 * |
| 4 * Copyright (C) 1997-2015, International Business Machines | 4 * Copyright (C) 1997-2015, 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 #ifndef _PLATFORM_H | 19 #ifndef _PLATFORM_H |
| 20 #define _PLATFORM_H | 20 #define _PLATFORM_H |
| 21 | 21 |
| 22 #include "unicode/uconfig.h" | 22 #include "unicode/uconfig.h" |
| 23 #include "unicode/uvernum.h" | 23 #include "unicode/uvernum.h" |
| 24 #blahblah |
| 24 | 25 |
| 25 /** | 26 /** |
| 26 * \file | 27 * \file |
| 27 * \brief Basic types for the platform. | 28 * \brief Basic types for the platform. |
| 28 * | 29 * |
| 29 * This file used to be generated by autoconf/configure. | 30 * This file used to be generated by autoconf/configure. |
| 30 * Starting with ICU 49, platform.h is a normal source file, | 31 * Starting with ICU 49, platform.h is a normal source file, |
| 31 * to simplify cross-compiling and working with non-autoconf/make build systems. | 32 * to simplify cross-compiling and working with non-autoconf/make build systems. |
| 32 * | 33 * |
| 33 * When a value in this file does not work on a platform, then please | 34 * When a value in this file does not work on a platform, then please |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 */ | 820 */ |
| 820 #if U_PLATFORM == U_PF_OS390 && defined(__cplusplus) | 821 #if U_PLATFORM == U_PF_OS390 && defined(__cplusplus) |
| 821 # define U_CALLCONV __cdecl | 822 # define U_CALLCONV __cdecl |
| 822 #else | 823 #else |
| 823 # define U_CALLCONV U_EXPORT2 | 824 # define U_CALLCONV U_EXPORT2 |
| 824 #endif | 825 #endif |
| 825 | 826 |
| 826 /* @} */ | 827 /* @} */ |
| 827 | 828 |
| 828 #endif | 829 #endif |
| OLD | NEW |