mirror of
https://github.com/reactos/reactos.git
synced 2025-06-02 07:56:16 +00:00
Revert r27863, and add the correct fix
svn path=/trunk/; revision=27895
This commit is contained in:
parent
34dac511bc
commit
e95c6843c0
3 changed files with 9 additions and 3 deletions
|
@ -9,7 +9,7 @@
|
|||
#define YY_FLEX_MINOR_VERSION 5
|
||||
|
||||
#include <stdio.h>
|
||||
#define WINE_WARN DPRINT
|
||||
|
||||
|
||||
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
||||
#ifdef c_plusplus
|
||||
|
|
|
@ -33,8 +33,6 @@
|
|||
#define BUTTON_CX 6
|
||||
#define BUTTON_CY 6
|
||||
|
||||
#define WINE_WARN DPRINT
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
|
||||
#include <stdarg.h>
|
||||
|
|
|
@ -101,6 +101,14 @@ static inline const char *debugstr_guid( const struct _GUID *id ) { return wine_
|
|||
#define WARN_ON(ch) 1
|
||||
#endif
|
||||
|
||||
#define WINE_WARN DPRINT
|
||||
#define WINE_WARN_(ch) DPRINT
|
||||
#ifdef NDEBUG
|
||||
#define WINE_WARN_ON(ch) 0
|
||||
#else
|
||||
#define WINE_WARN_ON(ch) 1
|
||||
#endif
|
||||
|
||||
#ifdef FIXME
|
||||
#undef FIXME
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue