diff options
author | Enrico Weigelt, metux IT consult <info@metux.net> | 2024-03-04 20:31:50 +0100 |
---|---|---|
committer | Enrico Weigelt, metux IT consult <info@metux.net> | 2024-03-11 12:26:44 +0100 |
commit | 738edd3501e5b482a660644bb7194129d59b7445 (patch) | |
tree | 8f5e9e12e8013604c885aa2ea1c7ad9033859b1b /Xi | |
parent | 2a5e7542755c8b6d1ce046cf92cfc76594d3a86d (diff) |
dix: unexport eventconvert.h functions
This header isn't installed, so no external modules could use the
functions declared there. Thus we can unexport it all.
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1358>
Diffstat (limited to 'Xi')
-rw-r--r-- | Xi/exevents.c | 4 | ||||
-rw-r--r-- | Xi/xiquerypointer.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Xi/exevents.c b/Xi/exevents.c index e16171468..4ffc93bbd 100644 --- a/Xi/exevents.c +++ b/Xi/exevents.c @@ -89,6 +89,9 @@ SOFTWARE. #include <X11/extensions/XIproto.h> #include <X11/extensions/XI2proto.h> #include <X11/extensions/geproto.h> + +#include "dix/eventconvert.h" + #include "windowstr.h" #include "miscstruct.h" #include "region.h" @@ -102,7 +105,6 @@ SOFTWARE. #include "listdev.h" /* for CopySwapXXXClass */ #include "xace.h" #include "xiquerydevice.h" /* For List*Info */ -#include "eventconvert.h" #include "eventstr.h" #include "inpututils.h" #include "mi.h" diff --git a/Xi/xiquerypointer.c b/Xi/xiquerypointer.c index 2b05ac5f3..02efdffb9 100644 --- a/Xi/xiquerypointer.c +++ b/Xi/xiquerypointer.c @@ -35,6 +35,9 @@ #include <X11/X.h> /* for inputstr.h */ #include <X11/Xproto.h> /* Request macro */ + +#include "dix/eventconvert.h" + #include "inputstr.h" /* DeviceIntPtr */ #include "windowstr.h" /* window structure */ #include <X11/extensions/XI.h> @@ -42,7 +45,6 @@ #include "extnsionst.h" #include "exevents.h" #include "exglobals.h" -#include "eventconvert.h" #include "scrnintstr.h" #include "xkbsrv.h" |