dix: unexport GetCurrentClient()
Not used by any driver, so no need to export it. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1377>
This commit is contained in:
parent
ad7e7d9259
commit
1205f5b6f9
|
@ -39,6 +39,7 @@ void ProcessWorkQueue(void);
|
|||
void ProcessWorkQueueZombies(void);
|
||||
|
||||
void CloseDownClient(ClientPtr client);
|
||||
ClientPtr GetCurrentClient(void);
|
||||
|
||||
/* lookup builtin color by name */
|
||||
Bool dixLookupBuiltinColor(int screen,
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
#include <linux/input.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
|
||||
#include <inputstr.h>
|
||||
#include <exevents.h>
|
||||
#include <xkbsrv.h>
|
||||
|
|
|
@ -28,7 +28,9 @@
|
|||
#include <math.h>
|
||||
|
||||
#include <X11/Xatom.h>
|
||||
#include "randrstr_priv.h"
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "randr/randrstr_priv.h"
|
||||
|
||||
#include "xwayland-cvt.h"
|
||||
#include "xwayland-output.h"
|
||||
|
|
|
@ -30,6 +30,9 @@
|
|||
#endif
|
||||
|
||||
#include <X11/X.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "os.h"
|
||||
#include "extinit.h"
|
||||
|
|
|
@ -25,13 +25,15 @@
|
|||
|
||||
#include <xwayland-config.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <libgen.h>
|
||||
#include <libei.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
|
||||
#include <inputstr.h>
|
||||
#include <inpututils.h>
|
||||
#include <libgen.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <libei.h>
|
||||
|
||||
#ifdef XWL_HAS_EI_PORTAL
|
||||
#include "liboeffis.h"
|
||||
|
|
|
@ -155,8 +155,6 @@ typedef int HWEventQueueType;
|
|||
typedef HWEventQueueType *HWEventQueuePtr;
|
||||
|
||||
/* dispatch.c */
|
||||
extern _X_EXPORT ClientPtr GetCurrentClient(void);
|
||||
|
||||
extern _X_EXPORT void SetInputCheck(HWEventQueuePtr /*c0 */ ,
|
||||
HWEventQueuePtr /*c1 */ );
|
||||
|
||||
|
|
Loading…
Reference in New Issue