1 /************************************************************************/
2 /*									*/
3 /*  Writing RTF.							*/
4 /*									*/
5 /************************************************************************/
6 
7 #   ifndef		RTF_WRITER_H
8 #   define		RTF_WRITER_H
9 
10 #   include	<sioGeneral.h>
11 #   include	<docBuf.h>
12 
13 struct RtfWriter;
14 typedef struct RtfWriter RtfWriter;
15 
16 /************************************************************************/
17 /*									*/
18 /*  Routine declarations.						*/
19 /*									*/
20 /************************************************************************/
21 
22 extern RtfWriter *	docRtfOpenWriter(	SimpleOutputStream *	sos,
23 						BufferDocument *	bd,
24 						int			flags );
25 
26 extern void docRtfCloseWriter(	RtfWriter *	rw );
27 
28 #   endif	/*	RTF_WRITER_H	*/
29