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

VxWorks

开发平台:

C/C++

  1. /* rebootLib.h - header file for rebootLib.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 __INCrebootLibh
  16. #define __INCrebootLibh
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /* function declarations */
  21. #if defined(__STDC__) || defined(__cplusplus)
  22. extern STATUS  rebootHookAdd (FUNCPTR rebootHook);
  23. extern void  reboot (int startType);
  24. #else /* __STDC__ */
  25. extern STATUS  rebootHookAdd ();
  26. extern void  reboot ();
  27. #endif /* __STDC__ */
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif /* __INCrebootLibh */