6 Sep
2006
6 Sep
'06
1:36 p.m.
Hi Paul:
When tracing is on for crypt we crashed.
+ if (!HIWORD(pszOID)) + TRACE("(%lx, %s, #%d, %s, %s)\n", dwEncodingType, pszFuncName, LOWORD(pszOID), + debugstr_w(pwszDll), pszOverrideFuncName);
debugstr_a() does this for you. + TRACE("(%lx, %s, %s, %s, %s)\n", dwEncodingType, pszFuncName, + debugstr_w(pszOID), debugstr_w(pwszDll), pszOverrideFuncName); You might want to use debugstr_a() also for the other strings (*FuncName) -- By by ... Detlef