dix: unexport and document ScreenRestructured()
Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
2b89942c7a
commit
0124a7c370
|
@ -527,4 +527,12 @@ void WindowHasNewCursor(WindowPtr pWin)
|
||||||
*/
|
*/
|
||||||
void WindowsRestructured(void);
|
void WindowsRestructured(void);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @brief do post actions necessary whn screens have been restructured
|
||||||
|
*
|
||||||
|
* currently eg. fixing up cursors and their confinements (randr)
|
||||||
|
*/
|
||||||
|
void ScreenRestructured(ScreenPtr pScreen)
|
||||||
|
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||||
|
|
||||||
#endif /* _XSERVER_DIX_PRIV_H */
|
#endif /* _XSERVER_DIX_PRIV_H */
|
||||||
|
|
|
@ -270,11 +270,6 @@ PickPointer(ClientPtr /* client */ );
|
||||||
extern _X_EXPORT DeviceIntPtr
|
extern _X_EXPORT DeviceIntPtr
|
||||||
PickKeyboard(ClientPtr /* client */ );
|
PickKeyboard(ClientPtr /* client */ );
|
||||||
|
|
||||||
#ifdef RANDR
|
|
||||||
extern _X_EXPORT void
|
|
||||||
ScreenRestructured(ScreenPtr pScreen);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ServerGrabCallback stuff
|
* ServerGrabCallback stuff
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue