mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
added U_CDECL_BEGIN and U_CDECL_END (extern "C"), wrapped declaration of UConverter in 'extern "C" { ... }' for C++
X-Trac-URL: https://ssl.icu-project.org/trac/ticket/7 git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@118 0a8b766c-62c9-45f9-954d-7f2943c9ead0
This commit is contained in:
parent
0dc0a5f949
commit
93cc1b7ab2
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