diff options
Diffstat (limited to 'xorg-server/hw/xwin/winmsg.h')
-rw-r--r-- | xorg-server/hw/xwin/winmsg.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/winmsg.h b/xorg-server/hw/xwin/winmsg.h index 611dd6962..91da7ab1f 100644 --- a/xorg-server/hw/xwin/winmsg.h +++ b/xorg-server/hw/xwin/winmsg.h @@ -39,7 +39,12 @@ void winDrvMsgVerb (int scrnIndex, void winDrvMsg (int scrnIndex, MessageType type, const char *format, ...); void winMsgVerb (MessageType type, int verb, const char *format, ...); void winMsg (MessageType type, const char *format, ...); +#if !defined(_MSC_VER) || defined(_DEBUG) void winDebug (const char *format, ...); +#else +#define winDebug(...) +#endif + void winTrace (const char *format, ...); void winErrorFVerb (int verb, const char *format, ...); |