mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-27 01:34:54 +00:00
public server module API headers shouldn't be clobbered with non-exported definitions, so move them out to private header file. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1290>
27 lines
959 B
C
27 lines
959 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
* Copyright © 1997 Metro Link Incorporated
|
|
*/
|
|
#ifndef _XSERVER_XF86_PARSER_PRIV
|
|
#define _XSERVER_XF86_PARSER_PRIV
|
|
|
|
#include "xf86Parser.h"
|
|
|
|
void xf86initConfigFiles(void);
|
|
char *xf86openConfigFile(const char *path,
|
|
const char *cmdline,
|
|
const char *projroot);
|
|
char *xf86openConfigDirFiles(const char *path,
|
|
const char *cmdline,
|
|
const char *projroot);
|
|
void xf86setBuiltinConfig(const char *config[]);
|
|
XF86ConfigPtr xf86readConfigFile(void);
|
|
void xf86closeConfigFile(void);
|
|
XF86ConfigPtr xf86allocateConfig(void);
|
|
void xf86freeConfig(XF86ConfigPtr p);
|
|
int xf86writeConfigFile(const char *filename, XF86ConfigPtr cptr);
|
|
int xf86layoutAddInputDevices(XF86ConfigPtr config, XF86ConfLayoutPtr layout);
|
|
|
|
#endif /* _XSERVER_XF86_PARSER_PRIV */
|