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

VxWorks

开发平台:

C/C++

  1. /* usrWvFileUploadPath.c - configuration file for Windview File upload path */
  2. /* Copyright 1997 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,13may98,pr   written
  7. */
  8. /*
  9. DESCRIPTION
  10. */
  11. extern FUNCPTR _func_wvOnUploadPathCreate;
  12. extern FUNCPTR _func_wvOnUploadPathClose;
  13. extern int wvArgHtons;
  14. extern char * wvLogMsgString1;
  15. extern char * wvLogMsgString2;
  16. VOID usrWvFileUploadPathInit ()
  17.     {
  18.     _func_wvOnUploadPathCreate = (FUNCPTR) fileUploadPathCreate;
  19.     _func_wvOnUploadPathClose = (FUNCPTR) fileUploadPathClose; 
  20.     wvArgHtons = 0;
  21.     wvLogMsgString1 = "fname=";
  22.     wvLogMsgString2 = "flag=";
  23.     fileUploadPathLibInit ();
  24.     }