os: unexport MakeClientGrabPervious() and MakeClientGrabImpervious()
Not used by any drivers, so no need to export them. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1384>
This commit is contained in:
parent
be4c8444eb
commit
4c1795701c
|
@ -38,6 +38,7 @@
|
||||||
#include <X11/extensions/XIproto.h>
|
#include <X11/extensions/XIproto.h>
|
||||||
|
|
||||||
#include "dix/dix_priv.h"
|
#include "dix/dix_priv.h"
|
||||||
|
#include "os/osdep.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "os.h"
|
#include "os.h"
|
||||||
|
|
|
@ -155,10 +155,6 @@ extern _X_EXPORT void IgnoreClient(ClientPtr /*client */ );
|
||||||
|
|
||||||
extern _X_EXPORT void AttendClient(ClientPtr /*client */ );
|
extern _X_EXPORT void AttendClient(ClientPtr /*client */ );
|
||||||
|
|
||||||
extern _X_EXPORT void MakeClientGrabImpervious(ClientPtr /*client */ );
|
|
||||||
|
|
||||||
extern _X_EXPORT void MakeClientGrabPervious(ClientPtr /*client */ );
|
|
||||||
|
|
||||||
extern _X_EXPORT void ListenOnOpenFD(int /* fd */ , int /* noxauth */ );
|
extern _X_EXPORT void ListenOnOpenFD(int /* fd */ , int /* noxauth */ );
|
||||||
|
|
||||||
extern _X_EXPORT Bool AddClientOnOpenFD(int /* fd */ );
|
extern _X_EXPORT Bool AddClientOnOpenFD(int /* fd */ );
|
||||||
|
|
|
@ -188,4 +188,7 @@ void OsReleaseSignals(void);
|
||||||
void OsResetSignals(void);
|
void OsResetSignals(void);
|
||||||
void OsAbort(void) _X_NORETURN;
|
void OsAbort(void) _X_NORETURN;
|
||||||
|
|
||||||
|
void MakeClientGrabPervious(ClientPtr client);
|
||||||
|
void MakeClientGrabImpervious(ClientPtr client);
|
||||||
|
|
||||||
#endif /* _OSDEP_H_ */
|
#endif /* _OSDEP_H_ */
|
||||||
|
|
Loading…
Reference in New Issue