home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / MAILER.ZIP / MAILER.TYP < prev    next >
Encoding:
Text File  |  1989-02-28  |  641 b   |  21 lines

  1. type mailer_structure = record
  2.               status : longint;
  3.               company : string[48];
  4.               contact : string[48];
  5.               street1 : string[30];
  6.               street2 : string[30];
  7.               city : string[25];
  8.               state : string[2];
  9.               zip : string[10];
  10.               title : string[30];
  11.               phone : string[14];
  12.               contact_type : byte;
  13.               notes1 : string[62];
  14.               notes2 : string[62];
  15.               notes3 : string[62];
  16.               notes4 : string[62];
  17. end; {record}
  18.  
  19. maxdatatype = mailer_structure;
  20. maxkeytype  = string[48];
  21.