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

VxWorks

开发平台:

C/C++

  1. /* connLibP.h - event buffer library header */
  2. /* Copyright 1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,10dec93,smb  written.
  7. */
  8. #ifndef __INCconnlibph
  9. #define __INCconnlibph
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. #if defined(__STDC__) || defined(__cplusplus)
  14. STATUS    connectionInit (void);
  15. void      connectionClose (void);
  16. void      connectionError (void);
  17. void      dataTransfer (char * buffer, size_t bufSize);
  18. #else   /* __STDC__ */
  19. STATUS    connectionInit ();
  20. void      connectionClose ();
  21. void      connectionError ();
  22. void      dataTransfer ();
  23. #endif  /* __STDC__ */
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* __INCconnlibph*/