diff options
author | Harold L Hunt II <huntharo@msu.edu> | 2004-02-27 19:39:45 +0000 |
---|---|---|
committer | Harold L Hunt II <huntharo@msu.edu> | 2004-02-27 19:39:45 +0000 |
commit | a6043b90d983e1c5be452ec1f420a300e889ba53 (patch) | |
tree | 9b0ea1e5cf80408c31bf837de19881076e462cbf /hw/xwin/winpfbdd.c | |
parent | 00a17f5b07ba391ddc0ee63244ea457255cbc92a (diff) |
Add options to win.h, winclipboard.h, and winwindow.h to disable or enable
building of clipboard and multi-window support. Fix clipboard build
when UTF8 is not supported.
Diffstat (limited to 'hw/xwin/winpfbdd.c')
-rw-r--r-- | hw/xwin/winpfbdd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/xwin/winpfbdd.c b/hw/xwin/winpfbdd.c index 350dea12a..0a744ea2e 100644 --- a/hw/xwin/winpfbdd.c +++ b/hw/xwin/winpfbdd.c @@ -649,8 +649,10 @@ winSetEngineFunctionsPrimaryDD (ScreenPtr pScreen) = (winBltExposedRegionsProcPtr) (void (*)(void))NoopDDA; pScreenPriv->pwinActivateApp = winActivateAppPrimaryDD; pScreenPriv->pwinHotKeyAltTab = winHotKeyAltTabPrimaryDD; +#if WIN_MULTIWINDOW_SUPPORT pScreenPriv->pwinFinishCreateWindowsWindow = (winFinishCreateWindowsWindowProcPtr) (void (*)(void))NoopDDA; +#endif return TRUE; } |