home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / CONVERTR / RTF2HTML / SRC / RTF2HTML.TAR / rtftohtml_src / newsource.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-05  |  887 b   |  58 lines

  1. struct Cstyle {
  2. } /* create an index of these */
  3. struct Pstyle {
  4. } /* create an index of these */
  5. struct PnStyle {
  6. } /* pointed to by paragraph */
  7.  
  8. struct vtext {
  9.     int alloc;
  10.     int used;
  11.     int * ptr;
  12. };
  13.  
  14. struct TextNode {
  15.     struct vtext vt;
  16.     struct cstyle cs;
  17.     void * next;
  18. };
  19.  
  20. struct FootnoteNode {
  21.     struct vtext ref;
  22.     struct vtext note;
  23.     struct cstyle cs;
  24.     void * next;
  25. };
  26.  
  27. struct TOCNode {
  28.     struct vtext ref;
  29.     struct cstyle cs;
  30.     int        noref;
  31.     int        type;
  32.     int     level;
  33.     void * next;
  34. };
  35.  
  36. struct IdxNode {
  37.     struct vtext ref;
  38.     struct vtext textval;
  39.     struct vtext BookMark;
  40.     struct cstyle cs;
  41.     int        isbold;
  42.     int        isital;
  43.     int        type;
  44.     int     level;
  45.     void * next;
  46. };
  47.  
  48. struct GraphicNode {
  49.     struct cstyle cs;
  50.     long loc;                /* Location of PICT in RTF input */
  51.     int size;                /* Size of PICT in RTF input */
  52.     int Gtype;                /* Type of graphic */
  53.     int PicGoalWid;            
  54.     int PicGoalHt;            
  55.     void * next;
  56. };
  57.  
  58.