diff options
author | marha <marha@users.sourceforge.net> | 2009-09-13 20:22:38 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-09-13 20:22:38 +0000 |
commit | 48bfb28bba3c19eeeb667581b9d9686eba070e98 (patch) | |
tree | 9de3ab3b1ef67d672ceb77dc9576505fb82f92ad /xorg-server/hw/xwin/winmsg.h | |
parent | de33a8e7273592eefd303a94e87a8b38592099a1 (diff) | |
download | vcxsrv-48bfb28bba3c19eeeb667581b9d9686eba070e98.tar.gz vcxsrv-48bfb28bba3c19eeeb667581b9d9686eba070e98.tar.bz2 vcxsrv-48bfb28bba3c19eeeb667581b9d9686eba070e98.zip |
Some clipboard rewrite. Clipboard seems to work now accept
for some socket shutdowns at startup (still under investigation)
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, ...); |