home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 024 / psi110g.zip / TIPMAIL.H < prev    next >
C/C++ Source or Header  |  1994-04-17  |  735b  |  32 lines

  1. #ifndef _TIPMAIL_H
  2. #define _TIPMAIL_H
  3.   
  4. #ifdef __TURBOC__
  5. static
  6. #endif
  7. struct tipcb {
  8.     struct tipcb *next;
  9.     struct proc *proc;
  10.     struct proc *in;
  11.     struct iface *iface;
  12.     struct timer timer;
  13.     int (*rawsave) __ARGS((struct iface *,struct mbuf *));
  14.     int s;
  15.     int echo;
  16.     int asy_dev;
  17.     unsigned default_timeout;
  18.     unsigned timeout;
  19.     char firstwarn;
  20.     char chk_modem_cd;
  21.     char raw;
  22. } *Tiplist;
  23. #define NULLTIP (struct tipcb *)0
  24.   
  25.   
  26. int tipstart __ARGS((int argc,char *argv[],void *p));
  27. int tip0 __ARGS((int argc,char *argv[],void *p));
  28. int telnet0 __ARGS((int argc,char *argv[],void *p));
  29. int telnet1 __ARGS((int argc,char *argv[],void *p));
  30.   
  31. #endif /* _TIPMAIL_H */
  32.