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

VxWorks

开发平台:

C/C++

  1. /* passFsLib.h - pass-through file system library header */
  2. /* Copyright 1984-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,05jun93,gae  written.
  7. */
  8. #ifndef __INCpassFsLibh
  9. #define __INCpassFsLibh
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /* Function declarations */
  14. #if defined(__STDC__) || defined(__cplusplus)
  15. extern void *passFsDevInit (char *devName);
  16. extern STATUS passFsInit (int nPassfs);
  17.       
  18. #else /* __STDC__ */
  19. extern void *passFsDevInit ();
  20. extern STATUS passFsInit ();
  21. #endif /* __STDC__ */
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* __INCpassFsLibh */