extern.cpp
上传用户:kkaqas
上传日期:2007-01-07
资源大小:38k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <stdarg.h>
  5. #include "extern.h"
  6. int g_max_file_size =100*1024000;
  7. int g_max_send_timeout =20;
  8. int g_max_recv_timeout =60;
  9. int g_max_retry =20;
  10. int g_max_reconnect =10;
  11. BOOL g_if_use_resume =0;
  12. char g_cur_path[128];
  13. void log_msg(char *errmsg, ...)
  14. {
  15. va_list args;
  16. char temp[256],log_file[128];
  17. FILE *fp =NULL;
  18. wsprintf(log_file, "%s\log.txt", g_cur_path);
  19. if((fp =fopen(log_file, "a")) ==NULL)
  20. return;
  21. va_start(args, errmsg);
  22. vsprintf(temp, errmsg, args);
  23. va_end(args);
  24. if(temp[0] && temp[strlen(temp)-1] =='n')
  25. temp[strlen(temp)-1] =0;
  26. fprintf(fp, "%sn", temp);
  27. fclose(fp);
  28. }