home *** CD-ROM | disk | FTP | other *** search
- /* (C) Tim Graves 20th April 1994
- This code is supplied AS IS. no warrantee either expressed or implied
- is provided. This code may be freeley modified and modified as long as my
- origional authorship is acknowledged.
-
- Tim Graves
- Sun Microsystems
-
- */
- /* this file contains information for the filter subsystem, it is included by
- psmain.c and psfilt.c */
- #define INFILTER 1
- #define OUTFILTER 2
- #define RESTFILTER 3
- struct filterstruct {
- char *suffix ;
- char *pscmd ;
- int direction;
- struct filterstruct * nextfilter ;} ;
- /* defing the level at which to debug */
- #define FILTCALLDEBUG 3
-