/* Splicer structure 87:8:10 */

/* Slice() needs an array of these to fill with cut segments */
/* Splice() uses the array to build the new string */

struct CutsRef {
    UBYTE Mode;     /* indicates meaning of 'Segment' - 0 for text string */
    char ID;        /* identification char -- case sensitive */
    char *Segment;  /* normally pointer to string to be inserted --
                        may be something else if Mode != 0 */
};

