13 Feb
2010
13 Feb
'10
11:03 a.m.
On 02/13/2010 11:49 AM, Mikołaj Zalewski wrote:
+#define expect_eq_ws(expected, actual) \ + do { \ + LPCWSTR value = (actual); \ + ok(lstrcmpW((expected), value) == 0, "Expected " #actual " to be %s (" #expected ") is %s\n", \ + wine_dbgstr_w(expected), wine_dbgstr_w(value)); \ + } while (0)
Hi Mikołaj, lstrcmpW is not implemented on Win9x/WinMe and will always return 0. -- Cheers, Paul.