Fix an obvious typo in call_hook_AtoW.

This commit is contained in:
Dmitry Timoshkov 2003-10-15 20:50:38 +00:00 committed by Alexandre Julliard
parent cc83d9addc
commit 5376c868c9
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ static LRESULT call_hook_AtoW( HOOKPROC proc, INT id, INT code, WPARAM wparam, L
}
if (HIWORD(cbtcwA->lpcs->lpszClass))
{
RtlCreateUnicodeStringFromAsciiz(&usBuffer,cbtcwA->lpcs->lpszName);
RtlCreateUnicodeStringFromAsciiz(&usBuffer,cbtcwA->lpcs->lpszClass);
csW.lpszClass = usBuffer.Buffer;
}
ret = proc( code, wparam, (LPARAM)&cbtcwW );