mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-15 12:40:32 +01:00
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>
(cherry picked from commit 4c1795701c)
This commit is contained in:
parent
e3610a9f5c
commit
ba89e22e7e
3 changed files with 9 additions and 7 deletions
|
|
@ -33,6 +33,12 @@
|
|||
#include <X11/X.h>
|
||||
#include <X11/Xproto.h>
|
||||
#include <X11/Xatom.h>
|
||||
#include <X11/extensions/xtestproto.h>
|
||||
#include <X11/extensions/XI.h>
|
||||
#include <X11/extensions/XIproto.h>
|
||||
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "os.h"
|
||||
#include "dixstruct.h"
|
||||
|
|
@ -45,9 +51,6 @@
|
|||
#include "mi.h"
|
||||
#include "xkbsrv.h"
|
||||
#include "xkbstr.h"
|
||||
#include <X11/extensions/xtestproto.h>
|
||||
#include <X11/extensions/XI.h>
|
||||
#include <X11/extensions/XIproto.h>
|
||||
#include "exglobals.h"
|
||||
#include "mipointer.h"
|
||||
#include "xserver-properties.h"
|
||||
|
|
|
|||
|
|
@ -158,10 +158,6 @@ extern _X_EXPORT void IgnoreClient(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 Bool AddClientOnOpenFD(int /* fd */ );
|
||||
|
|
|
|||
|
|
@ -242,4 +242,7 @@ extern void (*OsVendorVErrorFProc) (const char *, va_list args)
|
|||
_X_ATTRIBUTE_PRINTF(1, 0);
|
||||
#endif
|
||||
|
||||
void MakeClientGrabPervious(ClientPtr client);
|
||||
void MakeClientGrabImpervious(ClientPtr client);
|
||||
|
||||
#endif /* _OSDEP_H_ */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue