[PATCH xserver v2 1/9] dix: Add RootWindowFinalizeCallback
Adam Jackson
ajax at redhat.com
Tue Apr 5 17:54:25 UTC 2016
Signed-off-by: Adam Jackson <ajax at redhat.com>
---
dix/main.c | 3 +++
include/dix.h | 2 ++
2 files changed, 5 insertions(+)
diff --git a/dix/main.c b/dix/main.c
index 661ab03..77e0f2e 100644
--- a/dix/main.c
+++ b/dix/main.c
@@ -129,6 +129,8 @@ pthread_cond_t serverRunningCond = PTHREAD_COND_INITIALIZER;
#endif
+CallbackListPtr RootWindowFinalizeCallback = NULL;
+
int
dix_main(int argc, char *argv[], char *envp[])
{
@@ -230,6 +232,7 @@ dix_main(int argc, char *argv[], char *envp[])
FatalError("failed to create default stipple");
if (!CreateRootWindow(pScreen))
FatalError("failed to create root window");
+ CallCallbacks(&RootWindowFinalizeCallback, pScreen);
}
if (SetDefaultFontPath(defaultFontPath) != Success) {
diff --git a/include/dix.h b/include/dix.h
index d49d055..f63606a 100644
--- a/include/dix.h
+++ b/include/dix.h
@@ -594,6 +594,8 @@ typedef struct {
DeviceIntPtr device;
} DeviceEventInfoRec;
+extern _X_EXPORT CallbackListPtr RootWindowFinalizeCallback;
+
extern int
XItoCoreType(int xi_type);
extern Bool
--
2.5.0
More information about the xorg-devel
mailing list