Assuming this is a winelib app that is compiled within the wine source tree, what do I need to do (both makefile and include wise) to make it compile?
I tried adding msvcrt to "IMPORTS", but if I try to include "msvcrt/string.h", I get tons of conflicts with other includes over WCHAR and such.
Help?
SH.
Dimitrie O. Paun wrote:
On December 30, 2002 02:53 pm, Shachar Shemesh wrote:
It seems that stricmp is not available for winelib applications. Is this an intentional ommision, or just a missing implementation?
It is if you link it against msvcrt: include/msvcrt/string.h:#define stricmp _stricmp
If you use winegcc to compile your winelib app, just add -mno-cygwin to the command line, and that will cause it to use msvcrt instead of the native libc.