dix: unexport and document WindowsRestructured()
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
17ef760571
commit
2b89942c7a
|
@ -520,4 +520,11 @@ extern CallbackListPtr RootWindowFinalizeCallback;
|
|||
void WindowHasNewCursor(WindowPtr pWin)
|
||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||
|
||||
/*
|
||||
* @brief do post actions necessary when windows have been restructured
|
||||
*
|
||||
* currently updates the sprite position and the sprite's cursor.
|
||||
*/
|
||||
void WindowsRestructured(void);
|
||||
|
||||
#endif /* _XSERVER_DIX_PRIV_H */
|
||||
|
|
|
@ -264,9 +264,6 @@ WriteEventsToClient(ClientPtr /*pClient */ ,
|
|||
int /*count */ ,
|
||||
xEventPtr /*events */ );
|
||||
|
||||
extern _X_EXPORT void
|
||||
WindowsRestructured(void);
|
||||
|
||||
extern _X_EXPORT DeviceIntPtr
|
||||
PickPointer(ClientPtr /* client */ );
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#include <X11/X.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "mi/mi_priv.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
|
|
|
@ -50,6 +50,7 @@ SOFTWARE.
|
|||
#include <X11/extensions/shapeconst.h>
|
||||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
#include "mi/mi_priv.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue