Files
xserver/dix/settings.c
Enrico Weigelt, metux IT consult 4642d6207f os: unexport SeatId and move it to dix settings
Not used by any external module/driver, so no need to keep it
public. Also move it to the new dix settings code and rename it.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2026-02-03 11:34:14 +01:00

20 lines
499 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 <stddef.h>
#include "dix/settings_priv.h"
bool dixSettingAllowByteSwappedClients = false;
char *dixSettingSeatId = NULL;