Module: wine Branch: master Commit: c51be54c796c81ca8855d97740fcbebc99cca3e8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c51be54c796c81ca8855d97740...
Author: Detlef Riekenberg wine.dev@web.de Date: Tue Sep 9 22:16:13 2008 +0200
oleaut32: Dump parameter and SYSKIND for LHashValOfNameSysA.
---
dlls/oleaut32/hash.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/oleaut32/hash.c b/dlls/oleaut32/hash.c index 32c1086..12c9389 100644 --- a/dlls/oleaut32/hash.c +++ b/dlls/oleaut32/hash.c @@ -510,6 +510,9 @@ ULONG WINAPI LHashValOfNameSysA( SYSKIND skind, LCID lcid, LPCSTR lpStr) ULONG nHiWord, nLoWord = 0x0deadbee; const unsigned char *str = (const unsigned char *)lpStr, *pnLookup = NULL;
+ TRACE("(%d, %d, %s) %s\n", skind, lcid, debugstr_a(lpStr), + (skind == SYS_WIN16) ? "SYS_WIN16" : (skind == SYS_WIN32) ? "SYS_WIN32" : ""); + if (!str) return 0;