From 1fc1d8afcb5b9947e2b9665514dbfd1e86c0bf3f Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sun, 2 Jan 2005 23:49:58 -0500 Subject: snapshot of project "lynx", label v2-8-6dev_10 --- src/HTSaveToFile.h | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) (limited to 'src/HTSaveToFile.h') 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 #include -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 */ -- cgit 1.4.1-2-gfad0 /refs/?h=main&id=bd57b37fc52990f9c027d757578e3b7e37e4c9e6'>refs log tree commit diff stats
blob: 7dad7d1b78252bf2843e9bd3d4f49d272002b389 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34