|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T l
Length: 1026 (0x402) Types: TextFile Names: »libfilt.h«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦6429e39db⟧ »EurOpenD3/news/tmnn.7.8.tar.Z« └─⟦b5a65d78b⟧ └─⟦this⟧ »src/D.filt/libfilt.h«
/* 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 */