mirror of
https://github.com/X11Libre/xserver.git
synced 2026-01-26 14:03:17 +00:00
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>
18 lines
448 B
C
18 lines
448 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*
|
|
* 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.
|
|
*/
|
|
#include <dix-config.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "dix/settings_priv.h"
|
|
|
|
bool dixSettingAllowByteSwappedClients = false;
|