diff options
author | Vincent Richard <[email protected]> | 2004-12-22 14:55:43 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-22 14:55:43 +0000 |
commit | 4f9e439eecbca00b6de0d64e8a3f39b5e7707284 (patch) | |
tree | a2631ed6d1a86ac9f81164f1b9305434aed0a362 /src/charset.cpp | |
parent | Updated ChangeLog for new functions in 'component'. (diff) | |
download | vmime-4f9e439eecbca00b6de0d64e8a3f39b5e7707284.tar.gz vmime-4f9e439eecbca00b6de0d64e8a3f39b5e7707284.zip |
Some more class documentation.
Diffstat (limited to 'src/charset.cpp')
-rw-r--r-- | src/charset.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/charset.cpp b/src/charset.cpp index 793ea1f7..0ec050a8 100644 --- a/src/charset.cpp +++ b/src/charset.cpp @@ -28,6 +28,8 @@ extern "C" { #include <iconv.h> +#ifndef VMIME_BUILDING_DOC + // HACK: prototypes may differ depending on the compiler and/or system (the // second parameter may or may not be 'const'). This redeclaration is a hack // to have a common prototype "iconv_cast". @@ -35,6 +37,8 @@ extern "C" size_t *inbytesleft, char* * outbuf, size_t *outbytesleft); #define iconv_const ((iconv_const_hack) iconv) + +#endif // VMIME_BUILDING_DOC } |