home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1996 December / PCO1296.ISO / filesbbs / dos / terminat.arj / DEVELOP.EXE / ADDRBOOK.PAS next >
Encoding:
Pascal/Delphi Source File  |  1995-07-22  |  1.2 KB  |  30 lines

  1. {----------------------------------------------------------------------------}
  2. {                        TerMail address book format                         }
  3. {----------------------------------------------------------------------------}
  4.  
  5. Const
  6.   u_attr_delete = 1;
  7.  
  8. Type
  9.   AddrBookRecord = record
  10.                      Name           : String[50];
  11.                      Fidonet        : String[18];
  12.                      Crash          : Boolean;
  13.                      Internet       : String[60];
  14.                      Organisation   : String[50];
  15.                      Address1       : String[50];
  16.                      Address2       : String[50];
  17.                      Address3       : String[50];
  18.                      Comment        : Array[1..5] of String[50];
  19.                      DataPhone      : String[25];
  20.                      FaxPhone       : String[25];
  21.                      VoicePhone     : String[25];
  22.                      FirstDate      : Word;
  23.                      LastDate       : Word;
  24.                      LastTime       : Word;
  25.                      Times          : Word;
  26.                      Attr           : Byte;   { 1 = Deleted }
  27.                      FreeSpace      : Array[1..90] of Byte;
  28.                    End;
  29.  
  30.