DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T l

⟦e80932208⟧ TextFile

    Length: 1026 (0x402)
    Types: TextFile
    Names: »libfilt.h«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦6429e39db⟧ »EurOpenD3/news/tmnn.7.8.tar.Z« 
        └─⟦b5a65d78b⟧ 
            └─⟦this⟧ »src/D.filt/libfilt.h« 

TextFile

/* libfilt.h -- interface declarations for the news filter library */

#define VPROTO	"V100"	/* protocol version this library implements */

/* filter interface functions and the response info pointer from tofilter.c */
extern int fltinit(), fltarticle(), fltnewsgroup(), fltprogram(), fltbye();
extern char *fltinfo;

/* filter shell, accepts -[pd] options */
extern int filter();

/* filter implementation frame */
extern int lnfilter();

/* score-caching functions for filters */
extern void initscore(), putscore(), wrapscore();
extern int getscore();

#define NULLSCORER (int (*)())NULL	/* null scoring hook */

/*
 * Standard priority levels -- use these as a guide in concocting and
 * interpreting score values.
 */
#define P_IGNORE	-99999	/* for articles that should be ignored */
#define P_VISIBLE	0	/* least score for visible articles */
#define P_INTERESTING	10	/* likely to be interesting */
#define P_NOTEWORTHY	20	/* probably worth saving */
#define P_FASCINATING	30	/* a must-see */

/* libfilt.h ends here */