On Sun, May 19, 2013 at 2:24 AM, Juan Lang juan.lang@gmail.com wrote:
(consider subscribing to wine-devel so your emails don't get stuck in
moderation.)
Hmm but I am already!
Ok, that's strange. Maybe I just got it late.
I think Alexandre will object to using msvcrt functions (wcsncmp in
this case), but I don't have a straightforward alternative yet.
strcmp is already used. What's the difference?
Ah, well, strcmp comes from the C library your compiler uses. wcsncmp can only come from msvcrt. When compiling for Wine, this can result in mixing C runtime libraries, and hilarity can result.
Say, do these tests work on Wine? If not, you'll want to mark them with todo_wine, i.e. todo_wine ok(...). --Juan
Perhaps I could just use memcmp? Only the \REGISTRY\USER portion of these tests don't work on wine. Marked.