/* -------------------------------------------------------------------------- */
/*
                      NAME : count.h
               DESCRIPTION : Graphical counter on WWW pages.

                    AUTHOR : Heini Withagen
                    E-MAIL : heini@w4.nl
	          WWW-SITE : http://sparkie.riv.net/w4/index.html
                  CREATION : 05-05-1995
         LAST MODIFICATION : 23-08-1995

*/ 
/* -------------------------------------------------------------------------- */

struct info {
  int	width;			/* number of digits in the counter 		*/
  char	link[MAX_LENGTH];	/* link argument				*/
  int 	count_value;		/* the value of the counter 			*/
  int	increase;		/* number by which the counter should increase	*/
  int 	show;			/* show the counter or not 			*/
};
