New debug scheme with explicit debug channels declaration.
diff --git a/windows/x11drv/clipboard.c b/windows/x11drv/clipboard.c
index 92da752..cb07e66 100644
--- a/windows/x11drv/clipboard.c
+++ b/windows/x11drv/clipboard.c
@@ -20,6 +20,8 @@
#include "windef.h"
#include "x11drv.h"
+DEFAULT_DEBUG_CHANNEL(clipboard)
+
extern HWND hWndClipOwner;
extern HWND hWndClipWindow;
extern WINE_CLIPFORMAT ClipFormats[];
diff --git a/windows/x11drv/event.c b/windows/x11drv/event.c
index 1577b8b..f4351c2 100644
--- a/windows/x11drv/event.c
+++ b/windows/x11drv/event.c
@@ -35,6 +35,9 @@
#include "winsock.h"
#include "windef.h"
#include "x11drv.h"
+
+DECLARE_DEBUG_CHANNEL(event)
+DECLARE_DEBUG_CHANNEL(win)
/* X context to associate a hwnd to an X window */
extern XContext winContext;
diff --git a/windows/x11drv/keyboard.c b/windows/x11drv/keyboard.c
index 3f304c6..16f2087 100644
--- a/windows/x11drv/keyboard.c
+++ b/windows/x11drv/keyboard.c
@@ -28,6 +28,9 @@
#include "x11drv.h"
#include "winnls.h"
+DECLARE_DEBUG_CHANNEL(key)
+DECLARE_DEBUG_CHANNEL(keyboard)
+
extern LPBYTE pKeyStateTable;
int min_keycode, max_keycode, keysyms_per_keycode;
diff --git a/windows/x11drv/mouse.c b/windows/x11drv/mouse.c
index 44192b8..3fcfa0e 100644
--- a/windows/x11drv/mouse.c
+++ b/windows/x11drv/mouse.c
@@ -17,6 +17,8 @@
#include "windef.h"
#include "x11drv.h"
+DEFAULT_DEBUG_CHANNEL(cursor)
+
/**********************************************************************/
Cursor X11DRV_MOUSE_XCursor = None; /* Current X cursor */
diff --git a/windows/x11drv/wnd.c b/windows/x11drv/wnd.c
index 1993d5e..7432f97 100644
--- a/windows/x11drv/wnd.c
+++ b/windows/x11drv/wnd.c
@@ -30,6 +30,8 @@
#include "x11drv.h"
#include "wine/winuser16.h"
+DEFAULT_DEBUG_CHANNEL(win)
+
/**********************************************************************/
extern Cursor X11DRV_MOUSE_XCursor; /* Current X cursor */