diff options
author | Adam Jackson <ajax@nwnk.net> | 2006-02-15 19:05:55 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2006-02-15 19:05:55 +0000 |
commit | 3fe482c77e7b3e46739d011d8bbdee527d7a42fc (patch) | |
tree | 333387f5ce4518f0ae7d1a4084ee6efa9d7773c0 /mi/mioverlay.c | |
parent | 6ad4325b87889e1aada9333d750b7bb586c38b52 (diff) |
Mark everything in misym.c as _X_EXPORT.
Diffstat (limited to 'mi/mioverlay.c')
-rw-r--r-- | mi/mioverlay.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mi/mioverlay.c b/mi/mioverlay.c index 545927b53..9820cc65e 100644 --- a/mi/mioverlay.c +++ b/mi/mioverlay.c @@ -103,7 +103,7 @@ static void miOverlayChangeBorderWidth(WindowPtr, unsigned int); HasBorder(w) && \ (w)->backgroundState == ParentRelative) -Bool +_X_EXPORT Bool miInitOverlay( ScreenPtr pScreen, miOverlayInOverlayFunc inOverlayFunc, @@ -1730,7 +1730,7 @@ miOverlayChangeBorderWidth( /* We need this as an addition since the xf86 common code doesn't know about the second tree which is static to this file. */ -void +_X_EXPORT void miOverlaySetRootClip(ScreenPtr pScreen, Bool enable) { WindowPtr pRoot = WindowTable[pScreen->myNum]; @@ -1818,7 +1818,7 @@ miOverlayClearToBackground( /****************************************************************/ /* not used */ -Bool +_X_EXPORT Bool miOverlayGetPrivateClips( WindowPtr pWin, RegionPtr *borderClip, @@ -1837,7 +1837,7 @@ miOverlayGetPrivateClips( return FALSE; } -void +_X_EXPORT void miOverlaySetTransFunction ( ScreenPtr pScreen, miOverlayTransFunc transFunc @@ -1845,13 +1845,13 @@ miOverlaySetTransFunction ( MIOVERLAY_GET_SCREEN_PRIVATE(pScreen)->MakeTransparent = transFunc; } -Bool +_X_EXPORT Bool miOverlayCopyUnderlay(ScreenPtr pScreen) { return MIOVERLAY_GET_SCREEN_PRIVATE(pScreen)->copyUnderlay; } -void +_X_EXPORT void miOverlayComputeCompositeClip(GCPtr pGC, WindowPtr pWin) { ScreenPtr pScreen = pGC->pScreen; @@ -1907,7 +1907,7 @@ miOverlayComputeCompositeClip(GCPtr pGC, WindowPtr pWin) } } -Bool +_X_EXPORT Bool miOverlayCollectUnderlayRegions( WindowPtr pWin, RegionPtr *region |