home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume10 / pcmail2 / part01 / main / snapshot.h < prev    next >
Text File  |  1990-01-24  |  841b  |  39 lines

  1. /*++
  2. /* NAME
  3. /*    snapshot 5
  4. /* SUMMARY
  5. /*    keep overview of the mail directory
  6. /* PROJECT
  7. /*    pc-mail
  8. /* PACKAGE
  9. /*    mail
  10. /* SYNOPSIS
  11. /*    #include "snapshot.h"
  12. /* DESCRIPTION
  13. /* .nf
  14.  
  15.  /* Storage for one message entry in the snapshot table */
  16.  
  17. typedef struct {
  18.     unsigned short msgno;        /* message sequence number */
  19.     char    prefix;            /* message name prefix */
  20. } SNAP_SHOT;
  21.  
  22. /* access functions */
  23.  
  24. public void snap_junk();        /* junk snapshot table */
  25. public SNAP_SHOT *snap_shot();        /* make sure shapshot exists */
  26.  
  27. /* AUTHOR(S)
  28. /*      W.Z. Venema
  29. /*      Eindhoven University of Technology
  30. /*      Department of Mathematics and Computer Science
  31. /*      Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  32. /* CREATION DATE
  33. /*    Sun Dec 17 19:51:55 MET 1989
  34. /* LAST MODIFICATION
  35. /*    90/01/22 13:02:39
  36. /* VERSION/RELEASE
  37. /*    2.1
  38. /*--*/
  39.