diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2005-01-02 23:49:58 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2005-01-02 23:49:58 -0500 |
commit | 1fc1d8afcb5b9947e2b9665514dbfd1e86c0bf3f (patch) | |
tree | a83fd699321c8545516d56abcda6c9718fd1f4fb /src/HTSaveToFile.h | |
parent | bed9a2c79bfdde6e4ec89d9d02a5d6e88ae12f79 (diff) | |
download | lynx-snapshots-1fc1d8afcb5b9947e2b9665514dbfd1e86c0bf3f.tar.gz |
snapshot of project "lynx", label v2-8-6dev_10
Diffstat (limited to 'src/HTSaveToFile.h')
-rw-r--r-- | src/HTSaveToFile.h | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/src/HTSaveToFile.h b/src/HTSaveToFile.h index 8ede8d51..35ce3904 100644 --- a/src/HTSaveToFile.h +++ b/src/HTSaveToFile.h @@ -8,16 +8,22 @@ #include <HTStream.h> #include <HTFormat.h> -extern HTStream *HTSaveToFile(HTPresentation *pres, - HTParentAnchor *anchor, - HTStream *sink); +#ifdef __cplusplus +extern "C" { +#endif + extern HTStream *HTSaveToFile(HTPresentation *pres, + HTParentAnchor *anchor, + HTStream *sink); -extern HTStream *HTDumpToStdout(HTPresentation *pres, - HTParentAnchor *anchor, - HTStream *sink); + extern HTStream *HTDumpToStdout(HTPresentation *pres, + HTParentAnchor *anchor, + HTStream *sink); -extern HTStream *HTCompressed(HTPresentation *pres, - HTParentAnchor *anchor, - HTStream *sink); + extern HTStream *HTCompressed(HTPresentation *pres, + HTParentAnchor *anchor, + HTStream *sink); -#endif /* HTSAVETOFILE_H */ +#ifdef __cplusplus +} +#endif +#endif /* HTSAVETOFILE_H */ |