Macro.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /********************************************************************
  2. created: 2002/10/16
  3. file base: global
  4. file ext: cpp
  5. author: liupeng
  6. purpose: The file contains definitions, macros, and structures 
  7. to help me write gameengine
  8. *********************************************************************/
  9. #include "stdafx.h"
  10. #include "macro.h"
  11. #include "stdio.h"
  12. #ifdef _DEBUG
  13. void _trace(char *fmt, ...)
  14. {
  15. char string[1024] = {0};
  16. char out[1024] = {0};
  17. va_list body;
  18. va_start(body, fmt);
  19. vsprintf(string, fmt, body);
  20. va_end(body);
  21. if ( strlen( string ) )
  22. {
  23. sprintf( out, "[TRACE]: %s", string );
  24. OutputDebugString(out);
  25. }
  26. }
  27. #endif