From 7cba146b8adccdbde847653a7bcd222c38108ade Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Mon, 25 Oct 1999 22:46:05 +0000 Subject: [PATCH] [ICU-7] added U_CDECL_BEGIN and U_CDECL_END (extern "C"), wrapped declaration of UConverter in 'extern "C" { ... }' for C++ X-Commit-URL: https://ssl.icu-project.org/trac/changeset/118 --- icu4c/source/common/ucnv_bld.h | 9 ++++++++- icu4c/source/common/utypes.h | 4 ++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/icu4c/source/common/ucnv_bld.h b/icu4c/source/common/ucnv_bld.h index 2f8c243e21c..d4915c809ab 100644 --- a/icu4c/source/common/ucnv_bld.h +++ b/icu4c/source/common/ucnv_bld.h @@ -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; diff --git a/icu4c/source/common/utypes.h b/icu4c/source/common/utypes.h index 010047edab5..af4f4017abf 100644 --- a/icu4c/source/common/utypes.h +++ b/icu4c/source/common/utypes.h @@ -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