On 2/1/08, Francois Gouget fgouget@free.fr wrote:
The rules are as follows:
- For case insensitive comparisons of 'windows strings', a Windows function must be used (stricmp() or similar).
In this case, KERNEL32 lstrcmpiA() would be more appropriate. In general, using stricmp() in Win32 code should be discouraged since it may cause unnecessary dependency on MSVCRT.
BTW, isn't there any documentation for Wine hackers WRT this?