home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / source / serial.h < prev    next >
Encoding:
Text File  |  1991-07-30  |  512 b   |  17 lines

  1. /*  SERIAL.H -- Header for IBM Serial Port handler (with interrupts)
  2.  *
  3.  *  Copyright (C) by Alef Null 1989,1990,1991
  4.  *  Author(s): J Vuori, E Torsti
  5.  *  Modification(s):
  6.  *    1989-Sep: COM1, COM2 and baud rate selection with
  7.  *          OpenSerial(int port, int baud)
  8.  *    1991-Apr: DTR line control and baud rate setting functions added
  9.  */
  10.  
  11. int  OpenSerial(int port, int baud);
  12. void CloseSerial(void);
  13. int  ReadSerial(void);
  14. int  WriteSerial(int c);
  15. void SetBaudRate(int baud);
  16. void SetDTR(int state);
  17.