dix: unexport InitAtoms() and FreeAllAtoms()
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>
This commit is contained in:
parent
39b0c088d5
commit
06dbab958c
|
@ -51,6 +51,7 @@ SOFTWARE.
|
|||
#include <X11/X.h>
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
#include "dix/atom_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
/* 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 */
|
|
@ -85,6 +85,7 @@ Equipment Corporation.
|
|||
#include <X11/fonts/libxfont2.h>
|
||||
|
||||
#include "config/hotplug_priv.h"
|
||||
#include "dix/atom_priv.h"
|
||||
#include "dix/callback_priv.h"
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
|
|
|
@ -202,12 +202,6 @@ extern _X_EXPORT Bool ValidAtom(Atom /*atom */ );
|
|||
|
||||
extern _X_EXPORT const char *NameForAtom(Atom /*atom */ );
|
||||
|
||||
extern _X_EXPORT void
|
||||
FreeAllAtoms(void);
|
||||
|
||||
extern _X_EXPORT void
|
||||
InitAtoms(void);
|
||||
|
||||
/* main.c */
|
||||
|
||||
extern _X_EXPORT void
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "dix/atom_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
|
||||
#include "inputstr.h"
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include <stdint.h>
|
||||
#include <X11/extensions/XI2.h>
|
||||
|
||||
#include "dix/atom_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/exevents_priv.h"
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <stdint.h>
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
#include "dix/atom_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue