0
点赞
收藏
分享

微信扫一扫

trace

8052cf60ff5c 2022-05-20 阅读 33
void trace(char* szFormat, ...)

{

#ifdef _DEBUG

char buff[1024] = {0};

va_list args;

va_start(args,szFormat);

_vsnprintf(buff, 1023, szFormat,args);

OutputDebugString(buff);

va_end( args);

#endif

}
举报

相关推荐

TRACE

frida trace

console.trace()

qemu trace event

Trace Table 示例

mysql Trace 分析

10046 trace 产生方法

0 条评论