X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=include%2Frset.h;h=23e72ecd3a5e68ebb8b1c058624bf0c5e93f0245;hb=64536ef960bf4ed8de62b8db051fa99a181fff1f;hp=1d224940a76c336eda729f398c0ab1f979d2aca8;hpb=863d336f803da454e03f39ee2225719fed05021e;p=idzebra-moved-to-github.git diff --git a/include/rset.h b/include/rset.h index 1d22494..23e72ec 100644 --- a/include/rset.h +++ b/include/rset.h @@ -1,4 +1,4 @@ -/* $Id: rset.h,v 1.29 2004-08-20 14:44:45 heikki Exp $ +/* $Id: rset.h,v 1.30 2004-08-23 12:38:53 heikki Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 Index Data Aps @@ -56,6 +56,7 @@ int rset_default_forward(RSET ct, RSFD rfd, void *buf, const void *untilbuf); void rset_default_pos(RSFD rfd, double *current, double *total); +/* struct rset_term { char *name; zint nn; @@ -63,11 +64,11 @@ struct rset_term { zint count; int type; }; +*/ typedef struct rset { const struct rset_control *control; - int flags; int count; void *buf; } rset; @@ -108,9 +109,6 @@ RSET rset_dup (RSET rs); /* int rset_type (RSET) */ #define rset_type(rs) ((rs)->control->desc) -#define RSET_FLAG_VOLATILE 1 - -#define rset_is_volatile(rs) ((rs)->flags & RSET_FLAG_VOLATILE) #ifdef __cplusplus }