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

VxWorks

开发平台:

C/C++

  1. /* symSyncLib.h - header file for symSyncLib.c */
  2. /* Copyright 1996 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,13dec96,elp changed syncLibInit() into symSyncLibInit(), added
  7. symSyncTimeoutSet().
  8. 01b,06nov96,elp Removed useless definitions.
  9. 01a,04oct96,elp written.
  10. */
  11. #ifndef __INCsyncLibh
  12. #define __INCsyncLibh
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /* includes */
  17. #include "vxWorks.h"
  18. #include "stdlib.h"
  19. #include "wtx.h"
  20. #include "symLib.h"
  21. #include "moduleLib.h"
  22. #include "dllLib.h"
  23. /* externals */
  24. extern UINT32 syncRegistry; /* registry inet address */
  25. /* function declarations */
  26. #if defined(__STDC__) || defined(__cplusplus)
  27. extern void  symSyncLibInit ();
  28. extern UINT32 symSyncTimeoutSet (UINT32 timeout);
  29. #else /* __STDC__ */
  30. extern void  symSyncLibInit ();
  31. extern UINT32 symSyncTimeoutSet ();
  32. #endif /* __STDC__ */
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36. #endif /* __INCsyncLibh */