1 /************************************************************************/
2 /*									*/
3 /*  Handle shapes while reading RTF.					*/
4 /*									*/
5 /************************************************************************/
6 
7 #   ifndef		RTF_SHP_TAB_H
8 #   define		RTF_SHP_TAB_H
9 
10 #   include	<docRtfReaderImpl.h>
11 
12 /************************************************************************/
13 /*									*/
14 /*  Routine declarations.						*/
15 /*									*/
16 /************************************************************************/
17 
18 extern int docRtfShpArray(		const RtfControlWord *	rcw,
19 					int			arg,
20 					RtfReader *		rr );
21 
22 extern int docRtfShpString(		const RtfControlWord *	rcw,
23 					int			arg,
24 					RtfReader *		rr );
25 
26 extern int docRtfShpPicture(		const RtfControlWord *	rcw,
27 					int			arg,
28 					RtfReader *		rr );
29 
30 extern int docRtfShapeNumber(		const RtfControlWord *	rcw,
31 					int			arg,
32 					RtfReader *		rr );
33 
34 extern int docRtfShpColor(		const RtfControlWord *	rcw,
35 					int			arg,
36 					RtfReader *		rr );
37 
38 #   endif	/*	RTF_SHP_TAB_H	*/
39