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

VxWorks

开发平台:

C/C++

  1. /* rlogLib.h - header file for rlogLib.c */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 02b,22sep92,rrr  added support for c++
  7. 02a,04jul92,jcf  cleaned up.
  8. 01c,26may92,rrr  the tree shuffle
  9. 01b,04oct91,rrr  passed through the ansification filter
  10.   -fixed #else and #endif
  11.   -changed VOID to void
  12.   -changed copyright notice
  13. 01a,05oct90,shl created.
  14. */
  15. #ifndef __INCrlogLibh
  16. #define __INCrlogLibh
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /* function declarations */
  21. #if defined(__STDC__) || defined(__cplusplus)
  22. extern STATUS  rlogInit (void);
  23. extern STATUS  rlogin (char *host);
  24. extern void  rlogChildTask (void);
  25. extern void  rlogInTask (int sock, int ptyMfd);
  26. extern void  rlogOutTask (int sock, int ptyMfd);
  27. extern void  rlogind (void);
  28. #else /* __STDC__ */
  29. extern STATUS  rlogInit ();
  30. extern STATUS  rlogin ();
  31. extern void  rlogChildTask ();
  32. extern void  rlogInTask ();
  33. extern void  rlogOutTask ();
  34. extern void  rlogind ();
  35. #endif /* __STDC__ */
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif /* __INCrlogLibh */