diff options
Diffstat (limited to 'xorg-server')
-rw-r--r-- | xorg-server/hw/xwin/winclipboardwndproc.c | 1 | ||||
-rw-r--r-- | xorg-server/hw/xwin/winprocarg.c | 4 | ||||
-rw-r--r-- | xorg-server/makefile | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/xorg-server/hw/xwin/winclipboardwndproc.c b/xorg-server/hw/xwin/winclipboardwndproc.c index e410dd6d9..3d324e2d8 100644 --- a/xorg-server/hw/xwin/winclipboardwndproc.c +++ b/xorg-server/hw/xwin/winclipboardwndproc.c @@ -58,6 +58,7 @@ extern void *g_pClipboardDisplay; extern Window g_iClipboardWindow; extern Atom g_atomLastOwnedSelection; extern Bool g_fClipboardStarted; +extern HWND g_hwndClipboard; extern Bool g_fClipboardPrimary; /* diff --git a/xorg-server/hw/xwin/winprocarg.c b/xorg-server/hw/xwin/winprocarg.c index 683605ad7..4c34d0c84 100644 --- a/xorg-server/hw/xwin/winprocarg.c +++ b/xorg-server/hw/xwin/winprocarg.c @@ -100,13 +100,13 @@ winInitializeScreenDefaults(void) int dpiX = GetDeviceCaps(hdc, LOGPIXELSX); int dpiY = GetDeviceCaps(hdc, LOGPIXELSY); - winErrorFVerb(2, "winInitializeDefaultScreens - native DPI x %d y %d\n", dpiX, dpiY); + winDebug("winInitializeDefaultScreens - native DPI x %d y %d\n", dpiX, dpiY); monitorResolution = dpiY; ReleaseDC(NULL, hdc); } else { - winErrorFVerb(1, "winInitializeDefaultScreens - Failed to retrieve native DPI, falling back to default of %d DPI\n", WIN_DEFAULT_DPI); + winDebug("winInitializeDefaultScreens - Failed to retrieve native DPI, falling back to default of %d DPI\n", WIN_DEFAULT_DPI); monitorResolution = WIN_DEFAULT_DPI; } } diff --git a/xorg-server/makefile b/xorg-server/makefile index 2f0cb251b..e4bdedb7c 100644 --- a/xorg-server/makefile +++ b/xorg-server/makefile @@ -10,7 +10,7 @@ INCLUDELIBFILES = \ dix\$(OBJDIR)\libdix.lib \ fb\$(OBJDIR)\libfb.lib \ glx\$(OBJDIR)\libglx.lib \ - hw\xwin\$(OBJDIR)\libxwin.lib \ + hw\xwin\$(OBJDIR)\libXWin.lib \ hw\xwin\glx\$(OBJDIR)\libwinglx.lib \ mi\$(OBJDIR)\libmi.lib \ miext\damage\$(OBJDIR)\libdamage.lib \ |