dix: unexport GetSpritePosition()
This function isn't used in any external modules, thus 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/1345>
This commit is contained in:
parent
9673886fac
commit
eb81769b58
|
@ -82,6 +82,8 @@ SOFTWARE.
|
|||
#include <dix-config.h>
|
||||
#endif
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
|
||||
#include <X11/X.h>
|
||||
#include <X11/Xproto.h>
|
||||
#include <X11/extensions/geproto.h>
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
#include <dix-config.h>
|
||||
#endif
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
|
||||
|
|
|
@ -71,4 +71,6 @@ void NewCurrentScreen(DeviceIntPtr pDev,
|
|||
|
||||
Bool PointerConfinedToScreen(DeviceIntPtr pDev);
|
||||
|
||||
void GetSpritePosition(DeviceIntPtr pDev, int *px, int *py);
|
||||
|
||||
#endif /* _XSERVER_DIX_CURSOR_PRIV_H */
|
||||
|
|
|
@ -70,10 +70,6 @@ typedef struct _CursorMetric *CursorMetricPtr;
|
|||
extern _X_EXPORT int FreeCursor(void *pCurs,
|
||||
XID cid);
|
||||
|
||||
extern _X_EXPORT void GetSpritePosition(struct _DeviceIntRec * /* pDev */ ,
|
||||
int * /*px */ ,
|
||||
int * /*py */ );
|
||||
|
||||
#ifdef PANORAMIX
|
||||
extern _X_EXPORT int XineramaGetCursorScreen(struct _DeviceIntRec *pDev);
|
||||
#endif /* PANORAMIX */
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
|
||||
#include "randrstr.h"
|
||||
#include "inputstr.h"
|
||||
|
|
|
@ -35,6 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#include <X11/Xproto.h>
|
||||
#include <X11/keysym.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
#include "xkb/xkbsrv_priv.h"
|
||||
|
|
Loading…
Reference in New Issue