Commit e034c419 authored by Anthony Fok's avatar Anthony Fok Committed by Alexandre Julliard

include: Suppress "use msvcrt" error in tchar.h when -mno-cygwin is used.

parent 3dff8bc2
......@@ -23,8 +23,8 @@
#error Wine should not include tchar.h internally
#endif
#if defined(_UNICODE) || defined(_MBCS)
#error You must use msvcrt when building in Unicode/MBCS mode
#if !defined(__MSVCRT__) && (defined(_UNICODE) || defined(_MBCS))
#error You must use msvcrt when building in Unicode/MBCS mode [-mno-cygwin]
#endif
#ifdef __cplusplus
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment