shiftout.h 574 Bytes
/* Include a file here which defines VECTORLEN and */
/* declares wheretoget which is an array of Vectorinfo */

typedef struct Vectorinfo {
		int	typemask;		/* indicates whether its in the in//out file */
        int cycle;			/* which cycle the signal is valid */
        int digits;			/* how many digits to print (0=1 digit, no 0X) */
        char *pre,*post;	/* pre is "\n" for new line.  post is space(s) */
        int color;			/* color 0-10.  Errors print in color 5 (red) */
} Vectorinfo;

#define TYPEMASK_INPUT		0x1
#define TYPEMASK_OUTPUT		0x2

#include "blend.h"