summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2013-07-18 07:44:20 -0400
committerAdam Jackson <ajax@redhat.com>2013-08-07 05:10:48 -0400
commit57cfff09cfabe2d2d38ff07034a1cc7d33b36b43 (patch)
tree05a0cea0c3b90b657d47db8a1acda1c0a4f07f95
parent309ec37a6fc914ccf8d99c7a1120b0edb1ed650b (diff)
composite: export comp{Re,Unre}directWIndow
-rw-r--r--composite/compalloc.c1
-rw-r--r--composite/compint.h6
-rw-r--r--composite/compositeext.h6
3 files changed, 7 insertions, 6 deletions
diff --git a/composite/compalloc.c b/composite/compalloc.c
index cc69c68f2..bcba9d306 100644
--- a/composite/compalloc.c
+++ b/composite/compalloc.c
@@ -46,6 +46,7 @@
#endif
#include "compint.h"
+#include "compositeext.h"
static void
compScreenUpdate(ScreenPtr pScreen)
diff --git a/composite/compint.h b/composite/compint.h
index 45b5824a9..c56a4011d 100644
--- a/composite/compint.h
+++ b/composite/compint.h
@@ -190,16 +190,10 @@ extern RESTYPE CompositeClientOverlayType;
* compalloc.c
*/
-Bool
- compRedirectWindow(ClientPtr pClient, WindowPtr pWin, int update);
-
void
compFreeClientWindow(WindowPtr pWin, XID id);
int
- compUnredirectWindow(ClientPtr pClient, WindowPtr pWin, int update);
-
-int
compRedirectSubwindows(ClientPtr pClient, WindowPtr pWin, int update);
void
diff --git a/composite/compositeext.h b/composite/compositeext.h
index 0b148f029..1252e2701 100644
--- a/composite/compositeext.h
+++ b/composite/compositeext.h
@@ -37,4 +37,10 @@ extern _X_EXPORT Bool CompositeRegisterAlternateVisuals(ScreenPtr pScreen,
extern _X_EXPORT RESTYPE CompositeClientWindowType;
+extern _X_EXPORT Bool compRedirectWindow(ClientPtr pClient, WindowPtr pWin,
+ int update);
+
+extern _X_EXPORT int compUnredirectWindow(ClientPtr pClient, WindowPtr pWin,
+ int update);
+
#endif /* _COMPOSITEEXT_H_ */