1 Star 0 Fork 0

2144/dut

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DXTrace.h 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
2144 提交于 2024-07-07 14:41 . s
//***************************************************************************************
// DXTrace.h by X_Jun(MKXJun) (C) 2018-2022 All Rights Reserved.
// Licensed under the MIT License.
//
// DirectX错误追踪
// DirectX Error Tracing.
//***************************************************************************************
#ifndef DXTRACE_H
#define DXTRACE_H
#include "dut/WinMin.h"
// ------------------------------
// DXTraceW函数
// ------------------------------
// 在调试输出窗口中输出格式化错误信息,可选的错误窗口弹出(已汉化)
// [In]strFile 当前文件名,通常传递宏__FILEW__
// [In]hlslFileName 当前行号,通常传递宏__LINE__
// [In]hr 函数执行出现问题时返回的HRESULT值
// [In]strMsg 用于帮助调试定位的字符串,通常传递L#x(可能为NULL)
// [In]bPopMsgBox 如果为TRUE,则弹出一个消息弹窗告知错误信息
// 返回值: 形参hr
HRESULT WINAPI DXTraceW(_In_z_ const WCHAR* strFile, _In_ DWORD dwLine, _In_ HRESULT hr, _In_opt_ const WCHAR* strMsg, _In_ bool bPopMsgBox);
// ------------------------------
// HR宏
// ------------------------------
// Debug模式下的错误提醒与追踪
#if defined(DEBUG) | defined(_DEBUG)
#ifndef HR
#define HR(x) \
{ \
HRESULT hr = (x); \
if(FAILED(hr)) \
{ \
DXTraceW(__FILEW__, (DWORD)__LINE__, hr, L#x, true);\
} \
}
#endif
#else
#ifndef HR
#define HR(x) (x)
#endif
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iamherer/dut.git
git@gitee.com:iamherer/dut.git
iamherer
dut
dut
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385