blob: 4374f7a425fde5b6511280a8c33f36123e83359b (
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
|
#ifndef HTSAVETOFILE_H
#define HTSAVETOFILE_H
#include <HTUtils.h>
#include <HTStream.h>
#include <HTFormat.h>
extern HTStream * HTSaveToFile PARAMS((
HTPresentation * pres,
HTParentAnchor * anchor,
HTStream * sink));
extern HTStream * HTDumpToStdout PARAMS((
HTPresentation * pres,
HTParentAnchor * anchor,
HTStream * sink));
extern HTStream * HTCompressed PARAMS((
HTPresentation * pres,
HTParentAnchor * anchor,
HTStream * sink));
#endif /* HTSAVETOFILE_H */
|