Lines Matching refs:hr
35 const char* WINAPI DXGetErrorString8A(HRESULT hr);
36 const WCHAR* WINAPI DXGetErrorString8W(HRESULT hr);
39 const char* WINAPI DXGetErrorDescription8A(HRESULT hr);
40 const WCHAR* WINAPI DXGetErrorDescription8W(HRESULT hr);
43 HRESULT WINAPI DXTraceA(const char* strFile, DWORD dwLine, HRESULT hr, const char* strMsg, BOOL bPopMsgBox);
44 HRESULT WINAPI DXTraceW(const char* strFile, DWORD dwLine, HRESULT hr, const WCHAR* strMsg, BOOL bPopMsgBox);
49 #define DXTRACE_ERR(str,hr) DXTrace(__FILE__, (DWORD)__LINE__, hr, str, TRUE)
50 #define DXTRACE_ERR_NOMSGBOX(str,hr) DXTrace(__FILE__, (DWORD)__LINE__, hr, str, FALSE)
53 #define DXTRACE_ERR(str,hr) (hr)
54 #define DXTRACE_ERR_NOMSGBOX(str,hr) (hr)