(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