ds_api.cpp
上传用户:garry_shen
上传日期:2015-04-15
资源大小:45647k
文件大小:0k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "DS_API.h"
  3. #include "Common.h"
  4. extern char g_tszPathName[256];
  5. char szDSHostName[32];
  6. BOOL DSAppend(char *user,char *path,char *file,char *buf,int bufsize,int *ret)
  7. {
  8. //andy_re
  9. char buff1[256];
  10. FILE *fp;
  11. sprintf(buff1, "%s\%s\%s",g_tszPathName, path, file);
  12. if( (fp=fopen( buff1, "a")) != NULL ) {
  13. fprintf( fp,"%sn", buf);
  14. fclose( fp);
  15. return 1;
  16. }else {
  17. return -1;
  18. }
  19. }