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

  1. /* prm.h: submit parameter structure */
  2.  
  3. /*
  4.  * @(#) $Header: /xtel/pp/pp-beta/h/RCS/prm.h,v 6.0 1991/12/18 20:42:44 jpo Rel $
  5.  *
  6.  * $Log: prm.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_PRM
  16. #define _H_PRM
  17.  
  18.  
  19. /*
  20. When talking to submit this is the initial structure that is passed down.
  21. All the work should be done by mm_winit() to which is passed the relevent
  22. structure
  23. */
  24.  
  25. struct  prm_vars {
  26.     char    *prm_logfile;           /* log file */
  27.     int     prm_loglevel;           /* level of logging */
  28.     int     prm_opts;               /* various options*/
  29. /* prm_opts is a bit field:  (more to follow) */
  30. #define PRM_OPTS_TOTAL          2
  31. #define PRM_NONE        0x0
  32. #define PRM_ACCEPTALL        0x1
  33. #define PRM_NOTRACE        0x2
  34.     char    *prm_passwd;
  35. };
  36.  
  37. extern void    prm_init ();
  38. extern void    prm_free ();
  39. #endif
  40.