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

VxWorks

开发平台:

C/C++

  1. /* ftpdLib.h - header file for ftpdLib.c */
  2. /* Copyright 1984 - 1999 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01h,22feb99,spm  recovered version replaced by merge from vxw5_3_x branch; 
  7.                  removed duplicate history entry 01g describing existing change
  8. 01g,10dec97,spm  changed prototype for ftpdInit to support configurable
  9.                  password authentication (SPR #8602); removed unused
  10.                  prototype for ftpdTask routine
  11. 01f,22sep92,rrr  added support for c++
  12. 01e,04jul92,jcf  cleaned up.
  13. 01d,26may92,rrr  the tree shuffle
  14. 01c,04oct91,rrr  passed through the ansification filter
  15.   -fixed #else and #endif
  16.   -changed VOID to void
  17.   -changed copyright notice
  18. 01b,05oct90,dnw deleted ftpdWorkTask().
  19. 01a,05oct90,shl created.
  20. */
  21. #ifndef __INCftpdLibh
  22. #define __INCftpdLibh
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /* function declarations */
  27. #if defined(__STDC__) || defined(__cplusplus)
  28. extern STATUS  ftpdInit (FUNCPTR, int stackSize);
  29. extern STATUS  ftpdDelete (void);
  30. #else /* __STDC__ */
  31. extern STATUS  ftpdInit ();
  32. extern void  ftpdDelete ();
  33. #endif /* __STDC__ */
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* __INCftpdLibh */