ttyLib.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* ttyLib.h - header file for terminal drivers on top of sio core drivers */
  2. /* Copyright 1984-1994 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,15jun95,ms updated for new serial driver.
  7. 01b,22may95,ms  removed unneded include file.
  8. 01a,21feb95,ms  written.
  9. */
  10. #ifndef __INCttyLibh
  11. #define __INCttyLibh
  12. #include "types/vxTypes.h"
  13. #include "sioLib.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #if defined(__STDC__) || defined(__cplusplus)
  18. extern STATUS ttyDrv    ();
  19. extern STATUS ttyDevCreate (char *name, SIO_CHAN *pChan, int rdBufSize,
  20.     int wrtBufSize);
  21. #else
  22. extern STATUS ttyDrv    ();
  23. extern STATUS ttyDevCreate ();
  24. #endif
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif  /* __INCttyLibh */