home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / INF100.ZIP / INFOMAIL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-28  |  1.3 KB  |  32 lines

  1. /**********************************************************************
  2.  * infomail.h                        Copyright (C) Damian Walker 1995 *
  3.  *--------------------------------------------------------------------*
  4.  * Infomail header file, containing structures etc.                   *
  5.  *--------------------------------------------------------------------*
  6.  * Author  Damian G Walker                                            *
  7.  * Date    10-Feb-96                                                  *
  8.  **********************************************************************/
  9.  
  10.  
  11. /* Structures *********************************************************/
  12.  
  13.  
  14. struct setuprec
  15. {
  16.     char netmail[64];    /* FrontDoor netmail directory */
  17.     char name[36];      /* name of infomail server */
  18.     int  zone;          /* zone of infomail server */
  19.     int  net;           /* net of infomail server */
  20.     int  node;          /* node of infomail server */
  21.     int  point;         /* point of infomail server */
  22.     int  kill;          /* kill messages when sent */
  23. };
  24.  
  25.  
  26. struct inforec
  27. {
  28.     int  deleted;       /* true if entry has been deleted */
  29.     char name[9];       /* name of information pack */
  30.     char file[64];      /* filename of information pack */
  31. };
  32.