How can I use the TRACE macro in non-MFC projects?(如何在非 MFC 项目中使用 TRACE 宏?)
问题描述
我想使用 TRACE() 宏在 Visual Studio 的调试窗口中获取输出;2005 在一个非MFC C++ 项目中,但附加的头文件或库是需要吗?
I want to use the TRACE() macro to get output in the debug window in Visual Studio 2005 in a non-MFC C++ project, but which additional header or library is needed?
有没有办法在调试输出窗口中放置消息,我该怎么做?
Is there a way of putting messages in the debug output window and how can I do that?
推荐答案
构建您自己的方案.
trace.cpp:
#ifdef _DEBUG
bool _trace(TCHAR *format, ...)
{
TCHAR buffer[1000];
va_list argptr;
va_start(argptr, format);
wvsprintf(buffer, format, argptr);
va_end(argptr);
OutputDebugString(buffer);
return true;
}
#endif
trace.h:
#include <windows.h>
#ifdef _DEBUG
bool _trace(TCHAR *format, ...);
#define TRACE _trace
#else
#define TRACE false && _trace
#endif
然后只需 #include "trace.h" 就可以了.
then just #include "trace.h" and you're all set.
免责声明:我只是从个人项目中复制/粘贴了此代码并取出了一些特定于项目的内容,但没有理由它不起作用.;-)
Disclaimer: I just copy/pasted this code from a personal project and took out some project specific stuff, but there's no reason it shouldn't work. ;-)
这篇关于如何在非 MFC 项目中使用 TRACE 宏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在非 MFC 项目中使用 TRACE 宏?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01