From 6a10d96761530603c4e6ea54d225a15ccaa9e669 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 26 Jun 2025 14:45:33 +0200 Subject: [PATCH] rootless: fix missing include of dix/screen_hooks_priv.h We're using XorgScreenWindowPositionParamRec here, so need to include that header. Signed-off-by: Enrico Weigelt, metux IT consult --- miext/rootless/rootlessWindow.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/miext/rootless/rootlessWindow.h b/miext/rootless/rootlessWindow.h index 8a030939b..00e95b8a0 100644 --- a/miext/rootless/rootlessWindow.h +++ b/miext/rootless/rootlessWindow.h @@ -34,6 +34,8 @@ #ifndef _ROOTLESSWINDOW_H #define _ROOTLESSWINDOW_H +#include "dix/screen_hooks_priv.h" + #include "rootlessCommon.h" Bool RootlessCreateWindow(WindowPtr pWin);