mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 08:04:30 +00:00
Not used by any drivers, very DIX-internal, so should not be part of public API. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
19 lines
357 B
C
19 lines
357 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_DIX_ATOM_PRIV_H
|
|
#define _XSERVER_DIX_ATOM_PRIV_H
|
|
|
|
/*
|
|
* @brief initialize atom table
|
|
*/
|
|
void InitAtoms(void);
|
|
|
|
/*
|
|
* @brief free all atoms and atom table
|
|
*/
|
|
void FreeAllAtoms(void);
|
|
|
|
#endif /* _XSERVER_DIX_ATOM_PRIV_H */
|