os: unexport CloseWellKnownConnections()
Not used by any modules, so no need to keep it public. 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
0d95b53a20
commit
804b2c081b
|
@ -29,6 +29,7 @@
|
|||
#include <X11/keysym.h>
|
||||
|
||||
#include "mi/mipointer_priv.h"
|
||||
#include "os/client_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "ephyr.h"
|
||||
|
|
|
@ -19,6 +19,7 @@ is" without express or implied warranty.
|
|||
#include <X11/X.h>
|
||||
#include <X11/Xproto.h>
|
||||
|
||||
#include "os/client_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "screenint.h"
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
|
||||
#include "dix/input_priv.h"
|
||||
#include "dix/property_priv.h"
|
||||
#include "os/client_priv.h"
|
||||
#include "os/osdep.h"
|
||||
#include "os/xserver_poll.h"
|
||||
|
||||
|
|
|
@ -91,8 +91,6 @@ extern _X_EXPORT void SetCriticalOutputPending(void);
|
|||
extern _X_EXPORT int WriteToClient(ClientPtr /*who */ , int /*count */ ,
|
||||
const void * /*buf */ );
|
||||
|
||||
extern _X_EXPORT void CloseWellKnownConnections(void);
|
||||
|
||||
typedef void (*NotifyFdProcPtr)(int fd, int ready, void *data);
|
||||
|
||||
#define X_NOTIFY_NONE 0x0
|
||||
|
|
|
@ -52,6 +52,7 @@ void ResetOsBuffers(void);
|
|||
void NotifyParentProcess(void);
|
||||
void CreateWellKnownSockets(void);
|
||||
void ResetWellKnownSockets(void);
|
||||
void CloseWellKnownConnections(void);
|
||||
|
||||
/* exported only for DRI module, but should not be used by external drivers */
|
||||
_X_EXPORT void ResetCurrentRequest(struct _Client *client);
|
||||
|
|
|
@ -78,6 +78,7 @@ __stdcall unsigned long GetTickCount(void);
|
|||
#include <X11/Xtrans/Xtrans.h>
|
||||
|
||||
#include "os/audit.h"
|
||||
#include "os/client_priv.h"
|
||||
|
||||
#include "input.h"
|
||||
#include "dixfont.h"
|
||||
|
|
Loading…
Reference in New Issue