From dac14b887e311e1a7ec4cc1470ecd8750d915912 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 28 Jun 2024 23:05:48 +0200 Subject: [PATCH] xfree86: dga: unexport noXFree86DGAExtension and move into extension This isn't needed by any external module, so no need to export it. And those flags are better off in the corresponding extension, instead of the OS layer. Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/common/xf86Extensions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/xfree86/common/xf86Extensions.h b/hw/xfree86/common/xf86Extensions.h index 735a9e6ea..6e9f8832d 100644 --- a/hw/xfree86/common/xf86Extensions.h +++ b/hw/xfree86/common/xf86Extensions.h @@ -47,9 +47,9 @@ extern void XFree86VidModeExtensionInit(void); #ifdef XFreeXDGA #include -extern _X_EXPORT Bool noXFree86DGAExtension; -extern void XFree86DGAExtensionInit(void); -extern void XFree86DGARegister(void); +extern Bool noXFree86DGAExtension; +void XFree86DGAExtensionInit(void); +void XFree86DGARegister(void); #endif #endif