Fix prototype warnings. git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1209 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/libsrc/dxerr.c b/mingw-w64-crt/libsrc/dxerr.c index e893c75..a328bcf 100644 --- a/mingw-w64-crt/libsrc/dxerr.c +++ b/mingw-w64-crt/libsrc/dxerr.c
@@ -700,16 +700,19 @@ return &UnknownError; } +const TCHAR * __stdcall DXGetErrorString(unsigned long); const TCHAR * __stdcall DXGetErrorString(unsigned long hr) { return FindError(hr)->Name; } +const TCHAR * __stdcall DXGetErrorDescription(unsigned long); const TCHAR * __stdcall DXGetErrorDescription(unsigned long hr) { return FindError(hr)->Description; } +HRESULT __stdcall DXTrace(char *strFile, DWORD, HRESULT, TCHAR *, BOOL); HRESULT __stdcall DXTrace(char *strFile, DWORD dwLine, HRESULT hr, TCHAR *strMsg, BOOL bPopMsgBox) {