Files
xserver/dix/settings_priv.h
Enrico Weigelt, metux IT consult 5532917d76 os: move AllowByteSwappedClients setting into DIX
Adding new source and header that's going to host all DIX
settings (set via cmdline or xf86 config file) in the future.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2025-11-27 10:44:23 +01:00

20 lines
465 B
C

/* SPDX-License-Identifier: MIT OR X11
*
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
*/
#ifndef _XSERVER_DIX_SETTINGS_H
#define _XSERVER_DIX_SETTINGS_H
#include <stdbool.h>
/* This file holds global DIX *settings*, which might be needed by other
* parts, e.g. OS layer or DDX'es.
*
* Some of them might be influenced by command line args, some by xf86's
* config files.
*/
extern bool dixSettingAllowByteSwappedClients;
#endif