[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
This commit is contained in:
Steven R. Loomis 1999-10-25 22:46:05 +00:00
parent 5350d49ef9
commit 7cba146b8a
2 changed files with 12 additions and 1 deletions

View file

@ -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;

View file

@ -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