home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / h / ch_bind.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  735 b   |  49 lines

  1. /* ch_bind.h: channel binding types */
  2.  
  3. /*
  4.  * @(#) $Header: /xtel/pp/pp-beta/h/RCS/ch_bind.h,v 6.0 1991/12/18 20:42:44 jpo Rel $
  5.  *
  6.  * $Log: ch_bind.h,v $
  7.  * Revision 6.0  1991/12/18  20:42:44  jpo
  8.  * Release 6.0
  9.  *
  10.  *
  11.  */
  12.  
  13.  
  14.  
  15. #ifndef _H_CH_BIND
  16. #define _H_CH_BIND
  17.  
  18. /* SEK - someone must document this !! */
  19.  
  20. typedef    struct    list {
  21.     struct    list    *li_next;
  22.     char        *li_name;
  23. } LIST;
  24.     
  25. typedef    struct {
  26.     int    m_int;
  27.     LIST    *m_list;
  28. } MAT;
  29.  
  30. typedef    struct    types {
  31.     struct    types    *ty_next;
  32.     int        ty_number;
  33.     char        *ty_name;
  34. } TYPES;
  35.  
  36. typedef    struct    flat {
  37.     struct    flat    *flt_next;
  38.     char        *flt_name;
  39.     char        *flt_type;
  40. } FLAT;
  41.  
  42. typedef    struct    fillist {
  43.     struct    fillist    *fil_next;
  44.     char        *fil_name;
  45.     char        *fil_from;
  46.     char        *fil_to;
  47. } FILTER;
  48. #endif
  49.