summaryrefslogtreecommitdiffstats
path: root/src/portable.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2009-03-04 21:11:18 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2009-03-04 21:11:18 (GMT)
commit2ae3ed6594f3e4814b3b351eecc63b5e0be1bd37 (patch)
treeade91348b3d7d8806a09659790655b697c1f4eea /src/portable.h
parent5f3d8499c05e9eb512b72d296073041ac4da6f4d (diff)
downloadDoxygen-2ae3ed6594f3e4814b3b351eecc63b5e0be1bd37.zip
Doxygen-2ae3ed6594f3e4814b3b351eecc63b5e0be1bd37.tar.gz
Doxygen-2ae3ed6594f3e4814b3b351eecc63b5e0be1bd37.tar.bz2
Release-1.5.8-20090304
Diffstat (limited to 'src/portable.h')
-rw-r--r--src/portable.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/portable.h b/src/portable.h
index cf21902..3745d66 100644
--- a/src/portable.h
+++ b/src/portable.h
@@ -28,10 +28,13 @@ const char * portable_commandExtension();
bool portable_fileSystemIsCaseSensitive();
FILE * portable_popen(const char *name,const char *type);
int portable_pclose(FILE *stream);
-void * portable_iconv_open(const char* tocode, const char* fromcode);
-size_t portable_iconv (void *cd, const char** inbuf, size_t *inbytesleft,
- char* * outbuf, size_t *outbytesleft);
-int portable_iconv_close (void *cd);
+
+extern "C" {
+ void * portable_iconv_open(const char* tocode, const char* fromcode);
+ size_t portable_iconv (void *cd, const char** inbuf, size_t *inbytesleft,
+ char* * outbuf, size_t *outbytesleft);
+ int portable_iconv_close (void *cd);
+}
#endif