os: unexport WriteFdToClient()
Not used by any modules, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1790>
This commit is contained in:
parent
effe8d66bd
commit
ba665948f6
|
@ -45,6 +45,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include "dix/dix_priv.h"
|
||||
#include "os/auth.h"
|
||||
#include "os/busfault.h"
|
||||
#include "os/client_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <unistd.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/client_priv.h"
|
||||
|
||||
#include "dri3_priv.h"
|
||||
#include <syncsrv.h>
|
||||
|
|
|
@ -86,8 +86,6 @@ typedef struct _NewClientRec *NewClientPtr;
|
|||
|
||||
extern _X_EXPORT int ReadFdFromClient(ClientPtr client);
|
||||
|
||||
extern _X_EXPORT int WriteFdToClient(ClientPtr client, int fd, Bool do_close);
|
||||
|
||||
extern _X_EXPORT Bool InsertFakeRequest(ClientPtr /*client */ ,
|
||||
char * /*data */ ,
|
||||
int /*count */ );
|
||||
|
|
|
@ -43,5 +43,6 @@ const char *ClientAuthorized(struct _Client *client,
|
|||
Bool AddClientOnOpenFD(int fd);
|
||||
void ListenOnOpenFD(int fd, int noxauth);
|
||||
int ReadRequestFromClient(struct _Client *client);
|
||||
int WriteFdToClient(struct _Client *client, int fd, Bool do_close);
|
||||
|
||||
#endif /* _XSERVER_DIX_CLIENT_PRIV_H */
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "randr/randrstr_priv.h"
|
||||
#include "os/client_priv.h"
|
||||
|
||||
#include "swaprep.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue