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

VxWorks

开发平台:

C/C++

  1. /* proxyLib.h - include file for VxWorks Proxy Arp Client library */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01e,22sep92,rrr  added support for c++
  7. 01d,04jul92,jcf  cleaned up.
  8. 01c,23jun92,elh  renamed to proxyLib, changed parameters.
  9. 01b,26may92,rrr  the tree shuffle
  10. 01a,20sep91,elh  written.
  11. */
  12. #ifndef __INCproxyLibh
  13. #define __INCproxyLibh
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. #if defined(__STDC__) || defined(__cplusplus)
  18. extern STATUS  proxyReg (char *ifName, char *proxyAddr);
  19. extern STATUS  proxyUnreg (char *ifName, char *proxyAddr);
  20. #else   /* __STDC__ */
  21. extern STATUS  proxyReg ();
  22. extern STATUS  proxyUnreg ();
  23. #endif  /* __STDC__ */
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* __INCproxyLibh */