home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / MISC / NETS100.ZIP / FIDO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-18  |  416 b   |  25 lines

  1. /* Fido.h                            */
  2. /*                                */
  3. /* Definitions of structures used in fidonet messages        */
  4. /*                                */
  5. /*                                */
  6.  
  7. struct MessageHdr {
  8.     char fromUserName[36];
  9.     char toUserName[36];
  10.     char subject[72];
  11.     char dateTime[20];
  12.     short timesRead,
  13.           destNode,
  14.           origNode,
  15.           cost,
  16.           origNet,
  17.           destNet;
  18.     char fill[8];
  19.     short replyTo,
  20.           Attribute,
  21.           nextReply;
  22. };
  23.  
  24.  
  25.