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

VxWorks

开发平台:

C/C++

  1. /* pipeDrv.h - header file for pipeDrv.c */
  2. /* Copyright 1984-2001 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01f,05oct01,dcb  Fix SPR 9434.  Add pipeDevDelete() call.  Code merged back
  7.                  from the AE tree (created for AE under SPR 26204).
  8. 01e,22sep92,rrr  added support for c++
  9. 01d,04jul92,jcf  cleaned up.
  10. 01c,26may92,rrr  the tree shuffle
  11. 01b,04oct91,rrr  passed through the ansification filter
  12.   -fixed #else and #endif
  13.   -changed copyright notice
  14. 01a,05oct90,shl created.
  15. */
  16. #ifndef __INCpipeDrvh
  17. #define __INCpipeDrvh
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /* function declarations */
  22. #if defined(__STDC__) || defined(__cplusplus)
  23. extern STATUS  pipeDevCreate (char *name, int nMessages, int nBytes);
  24. extern STATUS   pipeDevDelete (char *name, BOOL force);
  25. extern STATUS  pipeDrv (void);
  26. #else /* __STDC__ */
  27. extern STATUS  pipeDevCreate ();
  28. extern STATUS   pipeDevDelete ();
  29. extern STATUS  pipeDrv ();
  30. #endif /* __STDC__ */
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif /* __INCpipeDrvh */