home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / comms / x_sun_psio / code / psfilt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-30  |  617 b   |  22 lines

  1. /* (C) Tim Graves 20th April 1994
  2.    This code is supplied AS IS. no warrantee either expressed or implied 
  3.    is provided. This code may be freeley modified and modified as long as my
  4.    origional authorship is acknowledged. 
  5.    
  6.    Tim Graves
  7.     Sun Microsystems
  8.      
  9.      */
  10. /* this file contains information for the filter subsystem, it is included by
  11. psmain.c and psfilt.c */
  12. #define INFILTER 1
  13. #define OUTFILTER 2
  14. #define RESTFILTER 3
  15. struct filterstruct {
  16.     char *suffix ;
  17.     char *pscmd ; 
  18.     int direction;
  19.     struct filterstruct * nextfilter ;} ;
  20. /* defing the level at which to debug */
  21. #define FILTCALLDEBUG 3
  22.