1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

Added missing TRACE define when NO_DEBUG_MSGS was defined.

This commit is contained in:
Eric Pouech 1999-05-29 10:53:03 +00:00 committed by Alexandre Julliard
parent 38aeff0a1d
commit 25cf49e72c

View File

@ -56,6 +56,7 @@ extern const char * const debug_ch_name[];
#define TRACE_(ch) __DPRINTF(__DBCL_TRACE,dbch_##ch)
#define TRACE_ON(ch) __GET_DEBUGGING(__DBCL_TRACE,dbch_##ch)
#else
#define TRACE __DUMMY_DPRINTF
#define TRACE_(ch) __DUMMY_DPRINTF
#define TRACE_ON(ch) 0
#endif /* NO_TRACE_MSGS */