Home | History | Annotate | Download | only in include

Lines Matching refs:hr

27 const char*     WINAPI DXGetErrorString8A(HRESULT hr);
28 const WCHAR* WINAPI DXGetErrorString8W(HRESULT hr);
31 const char* WINAPI DXGetErrorDescription8A(HRESULT hr);
32 const WCHAR* WINAPI DXGetErrorDescription8W(HRESULT hr);
35 HRESULT WINAPI DXTraceA(const char* strFile, DWORD dwLine, HRESULT hr, const char* strMsg, WINBOOL bPopMsgBox);
36 HRESULT WINAPI DXTraceW(const char* strFile, DWORD dwLine, HRESULT hr, const WCHAR* strMsg, WINBOOL bPopMsgBox);
41 #define DXTRACE_ERR(str,hr) DXTrace(__FILE__, (DWORD)__LINE__, hr, str, TRUE)
42 #define DXTRACE_ERR_NOMSGBOX(str,hr) DXTrace(__FILE__, (DWORD)__LINE__, hr, str, FALSE)
45 #define DXTRACE_ERR(str,hr) (hr)
46 #define DXTRACE_ERR_NOMSGBOX(str,hr) (hr)