home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / cw / kam-car / kam-typ.pas < prev    next >
Pascal/Delphi Source File  |  1989-03-01  |  834b  |  30 lines

  1. type
  2.  
  3.     machine_state = (receive, transmit, transceive);
  4.     kam_mode      = (ASCII, RTTY, CW, AMTOR, PACKET);
  5.     BandType      = (HF, VHF);
  6.  
  7.     alpha = array[0..127] of byte;
  8.     str2 = string[2];
  9.     msg_type  =  string[80];
  10.     file_type =  string[24];
  11.     log_type  =  record
  12.                    callsign,
  13.                    date,
  14.                    time,
  15.                    freq,
  16.                    power : string[10];
  17.                    rst_out,
  18.                    rst_in : string[3];
  19.                    comments : string[30];
  20.                  end;
  21.     DateStr = string[8];
  22.     TimeString = string[8];
  23.  
  24.     attribute = shortint;
  25.  
  26.     screen = array[0..1999] of record
  27.                                  c : char;
  28.                                  a : attribute;
  29.                                end;
  30.