mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
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>
19 lines
551 B
C
19 lines
551 B
C
/* 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 */
|