ftpdLib.h
资源名称:ixp425BSP.rar [点击查看]
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:
VxWorks
开发平台:
C/C++
- /* ftpdLib.h - header file for ftpdLib.c */
- /* Copyright 1984 - 1999 Wind River Systems, Inc. */
- /*
- modification history
- --------------------
- 01h,22feb99,spm recovered version replaced by merge from vxw5_3_x branch;
- removed duplicate history entry 01g describing existing change
- 01g,10dec97,spm changed prototype for ftpdInit to support configurable
- password authentication (SPR #8602); removed unused
- prototype for ftpdTask routine
- 01f,22sep92,rrr added support for c++
- 01e,04jul92,jcf cleaned up.
- 01d,26may92,rrr the tree shuffle
- 01c,04oct91,rrr passed through the ansification filter
- -fixed #else and #endif
- -changed VOID to void
- -changed copyright notice
- 01b,05oct90,dnw deleted ftpdWorkTask().
- 01a,05oct90,shl created.
- */
- #ifndef __INCftpdLibh
- #define __INCftpdLibh
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* function declarations */
- #if defined(__STDC__) || defined(__cplusplus)
- extern STATUS ftpdInit (FUNCPTR, int stackSize);
- extern STATUS ftpdDelete (void);
- #else /* __STDC__ */
- extern STATUS ftpdInit ();
- extern void ftpdDelete ();
- #endif /* __STDC__ */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __INCftpdLibh */