home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume3 / pcmail / part07 / work.h < prev   
Encoding:
C/C++ Source or Header  |  1989-02-03  |  1.1 KB  |  40 lines

  1. /*++
  2. /* NAME
  3. /*      scanwork,rmtwork 5
  4. /* SUMMARY
  5. /*      spool directory access for cico
  6. /* PROJECT
  7. /*      pc-mail
  8. /* PACKAGE
  9. /*      cico
  10. /* SYNOPSIS
  11. /*      #include "work.h"
  12. /* DESCRIPTION
  13. /* .nf
  14.  
  15. /* /* globally visible elements of scanwork.c */
  16.  
  17. typedef struct {
  18.     char path[BUFSIZ];                  /* full path name */
  19.     char type;                          /* Data, eXecute */
  20.     char *tail;                         /* file sequence nr part */
  21.     char rqst[BUFSIZ];                  /* uucp request message */
  22.     FILE *fp;                /* associated file pointer */
  23. } work;
  24.  
  25. extern work *scanwork();                /* searches work files */
  26. extern work *rmtwork();                 /* assigns spool files */
  27. extern void getwork();            /* receives remote work */
  28. /* AUTHOR(S)
  29. /*      W.Z. Venema
  30. /*      Eindhoven University of Technology
  31. /*      Department of Mathematics and Computer Science
  32. /*      Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  33. /* CREATION DATE
  34. /*    Sun Apr 12 14:30:28 GMT+1:00 1987
  35. /* LAST MODIFICATION
  36. /*    Sun Apr  3 23:53:42 MET 1988
  37. /* VERSION/RELEASE
  38. /*    1.2
  39. /*--*/
  40.