"Mike McCormack" mike@codeweavers.com wrote:
There's quite a few strcasecmp calls revealed by:
find . -name *.c -exec grep strcasecmp {} ; -ls
We probably need somebody to go through and clean them all up. Maybe a janitorial task?
Almost all of them can be directly replaced by lstrcmpiA, the exceptions are:
dlls/kernel/locale.c - can't use A->W conversions on a start-up phase dlls/ntdll/relay.c - can't use A->W conversions on a start-up phase
server/* - unix app tools/widl/* - unix app tools/winebuild/* - unix app tools/winedump/* - unix app tools/wmc/* - unix app tools/wrc/* - unix app