dix: unexport InitClient()
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/1379>
This commit is contained in:
parent
b064b79132
commit
dfdde27990
|
@ -41,6 +41,7 @@ void ProcessWorkQueueZombies(void);
|
||||||
|
|
||||||
void CloseDownClient(ClientPtr client);
|
void CloseDownClient(ClientPtr client);
|
||||||
ClientPtr GetCurrentClient(void);
|
ClientPtr GetCurrentClient(void);
|
||||||
|
void InitClient(ClientPtr client, int i, void *ospriv);
|
||||||
|
|
||||||
/* lookup builtin color by name */
|
/* lookup builtin color by name */
|
||||||
Bool dixLookupBuiltinColor(int screen,
|
Bool dixLookupBuiltinColor(int screen,
|
||||||
|
|
|
@ -165,10 +165,6 @@ extern _X_EXPORT void UpdateCurrentTimeIf(void);
|
||||||
extern _X_EXPORT int dixDestroyPixmap(void *value,
|
extern _X_EXPORT int dixDestroyPixmap(void *value,
|
||||||
XID pid);
|
XID pid);
|
||||||
|
|
||||||
extern _X_EXPORT void InitClient(ClientPtr client,
|
|
||||||
int i,
|
|
||||||
void *ospriv);
|
|
||||||
|
|
||||||
extern _X_EXPORT ClientPtr NextAvailableClient(void *ospriv);
|
extern _X_EXPORT ClientPtr NextAvailableClient(void *ospriv);
|
||||||
|
|
||||||
extern _X_EXPORT void SendErrorToClient(ClientPtr /*client */ ,
|
extern _X_EXPORT void SendErrorToClient(ClientPtr /*client */ ,
|
||||||
|
|
|
@ -30,6 +30,9 @@
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "dix/dix_priv.h"
|
||||||
|
|
||||||
#include "extinit.h" /* for XInputExtensionInit */
|
#include "extinit.h" /* for XInputExtensionInit */
|
||||||
#include "exglobals.h"
|
#include "exglobals.h"
|
||||||
#include "xkbsrv.h" /* for XkbInitPrivates */
|
#include "xkbsrv.h" /* for XkbInitPrivates */
|
||||||
|
|
|
@ -29,6 +29,9 @@
|
||||||
#endif
|
#endif
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <X11/Xatom.h>
|
#include <X11/Xatom.h>
|
||||||
|
|
||||||
|
#include "dix/dix_priv.h"
|
||||||
|
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "inputstr.h"
|
#include "inputstr.h"
|
||||||
#include "scrnintstr.h"
|
#include "scrnintstr.h"
|
||||||
|
|
Loading…
Reference in New Issue