mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-7 added U_CDECL_BEGIN and U_CDECL_END (extern "C"), wrapped declaration of UConverter in 'extern "C" { ... }' for C++
X-SVN-Rev: 118
This commit is contained in:
parent
d0cf0882de
commit
6bcddc5d73
2 changed files with 12 additions and 1 deletions
|
@ -140,7 +140,12 @@ UConverterSharedData;
|
|||
|
||||
|
||||
/*Defines a UConverter, the lightweight mutable part the user sees */
|
||||
U_CFUNC
|
||||
|
||||
U_CDECL_BEGIN /* We must declare the following as 'extern "C"' so that if ucnv
|
||||
itself is compiled under C++, the linkage of the funcptrs will
|
||||
work.
|
||||
*/
|
||||
|
||||
struct UConverter
|
||||
{
|
||||
int32_t toUnicodeStatus; /*Used to internalize stream status information */
|
||||
|
@ -198,6 +203,8 @@ struct UConverter
|
|||
*/
|
||||
};
|
||||
|
||||
U_CDECL_END /* end of UConverter */
|
||||
|
||||
typedef struct UConverter UConverter;
|
||||
|
||||
|
||||
|
|
|
@ -119,8 +119,12 @@ typedef uint16_t UChar;
|
|||
|
||||
#ifdef XP_CPLUSPLUS
|
||||
# define U_CFUNC extern "C"
|
||||
# define U_CDECL_BEGIN extern "C" {
|
||||
# define U_CDECL_END }
|
||||
#else
|
||||
# define U_CFUNC
|
||||
# define U_CDECL_BEGIN
|
||||
# define U_CDECL_END
|
||||
#endif
|
||||
#define U_CAPI U_CFUNC U_EXPORT
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue