home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / pascal2c / hpib_1.imp < prev    next >
Text File  |  1992-08-03  |  1KB  |  52 lines

  1.  
  2.  
  3. {IncludeFrom=hpib_1 <hpib_1.h>}
  4.  
  5.  
  6. {*VarStrings=0} {*ExportSymbol=P_%s} {*Export_Symbol=%s}
  7.  
  8.  
  9. MODULE hpib_1 ;        
  10.  
  11.         { by      Tim Mikkelsen
  12.           date    07/16/81
  13.           update  08/03/83 by J Schmidt
  14.           
  15.           purpose This module contains the LEVEL 1 HPIB GROUP procedures.   
  16.                 
  17.         }
  18.  
  19.  
  20. IMPORT    iodeclarations ;  
  21.   
  22. EXPORT
  23.   
  24.                           
  25.   PROCEDURE send_command( select_code : type_isc ;
  26.                           command     : CHAR );
  27.   FUNCTION  my_address  ( select_code : type_isc)
  28.                         : type_hpib_addr ;
  29.   FUNCTION  active_controller
  30.                         ( select_code : type_isc)
  31.                         : BOOLEAN;
  32.   FUNCTION  system_controller
  33.                         ( select_code : type_isc)
  34.                         : BOOLEAN;
  35.   FUNCTION  addr_to_talk( device      : type_device)
  36.                         : type_isc;
  37.   FUNCTION  addr_to_listen
  38.                         ( device      : type_device)
  39.                         : type_isc;
  40.   FUNCTION  set_to_talk ( device      : type_device)
  41.                         : type_isc;
  42.   FUNCTION  set_to_listen 
  43.                         ( device      : type_device)
  44.                         : type_isc;
  45.   FUNCTION  end_set     ( select_code : type_isc )
  46.                         : BOOLEAN;
  47.   
  48.   
  49.   
  50. END.    { of hpib_1 }
  51.  
  52.