On 2/13/2018 6:05 PM, Nikolay Sivov wrote:
case DLGPROCTEXT_DLGPROCA:
todo_wine_if(IsWindowUnicode(hwnd))
ok(textA == testtext, "%s: %s, unexpected text %s.\n", IsWindowUnicode(hwnd) ? "U" : "A",
testmodes[mode], textA);
break;
case DLGPROCTEXT_DLGPROCW:
todo_wine_if(!IsWindowUnicode(hwnd))
ok(text == testtextW, "%s: %s, unexpected text %s.\n", IsWindowUnicode(hwnd) ? "U" : "A", testmodes[mode],
wine_dbgstr_w(text));
break;
Those two cases are unreachable. Ignore this one please, I'll send another version.