home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d102 / match_stuff.lha / Match_Stuff / Splicer.h < prev    next >
C/C++ Source or Header  |  1987-09-06  |  444b  |  13 lines

  1. /* Splicer structure 87:8:10 */
  2.  
  3. /* Slice() needs an array of these to fill with cut segments */
  4. /* Splice() uses the array to build the new string */
  5.  
  6. struct CutsRef {
  7.     UBYTE Mode;     /* indicates meaning of 'Segment' - 0 for text string */
  8.     char ID;        /* identification char -- case sensitive */
  9.     char *Segment;  /* normally pointer to string to be inserted --
  10.                         may be something else if Mode != 0 */
  11. };
  12.  
  13.