home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMA&GPFax-V1,33Sources.LHA / serial_proto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-25  |  1.2 KB  |  46 lines

  1. /* $Header: pd:zvmrcs/serial_proto.h,v 1.1 1993/04/07 18:46:29 rvillari Exp $ */
  2. #ifndef _SERIAL_PROTO_H
  3. #define _SERIAL_PROTO_H
  4.  
  5. /* Serial I/O routines */
  6.  
  7.  
  8. #include <exec/types.h>
  9. #include "serial.h"
  10.  
  11. ULONG SerialSignal(struct SerialData*);
  12.  
  13. /* opens the serial port in the default shared mode */
  14. struct SerialData *OpenSerial(char *serialName, int UnitNumber, ULONG serialFlags);
  15.  
  16. /* close the serial port */
  17. void CloseSerial(struct SerialData *);
  18.  
  19. /* change the serial port status */
  20. int ChangeData(struct SerialData *, ULONG baudRate, UBYTE numBits, UBYTE stopBits, ULONG serialFlags, ULONG readBufferLength);
  21.  
  22. /* synchronous i/o */
  23. long WriteSer(struct SerialData *,char *,long);
  24. long ReadSer(struct SerialData *,char *, long, long*);
  25.  
  26. /* asynchronous i/o */
  27. void SendSer(struct SerialData *, char *,long);
  28. void RecvSer(struct SerialData *,char *, long);
  29.  
  30. void AbortSer(struct SerialData *);
  31. long CheckSer(struct SerialData *);
  32. long WaitSer(struct SerialData *);
  33. void WaitWaitSer(struct SerialData *);
  34.  
  35. void StartSer(struct SerialData*);
  36. void StopSer(struct SerialData*);
  37.  
  38. /* number of unread bytes in the internal serial buffer */
  39. long SerBuffer(struct SerialData *);
  40.  
  41. /* clear the internal serial buffer */
  42. void ClearSer(struct SerialData *);
  43.  
  44.  
  45. #endif
  46.