mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
dix: unexport AddScreen() and AddGPUScreen()
These aren't used by any drivers/modules, just DDX'es, so no need to export. Note: tigervnc does use it, but it has it's own DDX, therefore directly linked in, just like the in-tree DDX'es which doesn't need exporting. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1349>
This commit is contained in:
committed by
Marge Bot
parent
dc84331f5d
commit
27b83c4cd0
18
dix/screenint_priv.h
Normal file
18
dix/screenint_priv.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/* SPDX-License-Identifier: MIT OR X11
|
||||
*
|
||||
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
||||
* Copyright © 1987, 1998 The Open Group
|
||||
*/
|
||||
#ifndef _XSERVER_DIX_SCREENINT_PRIV_H
|
||||
#define _XSERVER_DIX_SCREENINT_PRIV_H
|
||||
|
||||
#include <X11/Xdefs.h>
|
||||
|
||||
typedef struct _Screen *ScreenPtr;
|
||||
|
||||
typedef Bool (*ScreenInitProcPtr)(ScreenPtr pScreen, int argc, char **argv);
|
||||
|
||||
int AddScreen(ScreenInitProcPtr pfnInit, int argc, char **argv);
|
||||
int AddGPUScreen(ScreenInitProcPtr pfnInit, int argc, char **argv);
|
||||
|
||||
#endif /* _XSERVER_DIX_SCREENINT_PRIV_H */
|
||||
Reference in New Issue
Block a user