mi: unexport miMoveWindow()
Not used by any drivers/modules, so no need to keep it public. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1727>
This commit is contained in:
parent
0624a8bad4
commit
faad8ed1c6
7
mi/mi.h
7
mi/mi.h
|
@ -280,13 +280,6 @@ extern _X_EXPORT void miPolylines(DrawablePtr pDrawable,
|
||||||
|
|
||||||
/* miwindow.c */
|
/* miwindow.c */
|
||||||
|
|
||||||
extern _X_EXPORT void miMoveWindow(WindowPtr /*pWin */ ,
|
|
||||||
int /*x */ ,
|
|
||||||
int /*y */ ,
|
|
||||||
WindowPtr /*pNextSib */ ,
|
|
||||||
VTKind /*kind */
|
|
||||||
);
|
|
||||||
|
|
||||||
extern _X_EXPORT void miResizeWindow(WindowPtr /*pWin */ ,
|
extern _X_EXPORT void miResizeWindow(WindowPtr /*pWin */ ,
|
||||||
int /*x */ ,
|
int /*x */ ,
|
||||||
int /*y */ ,
|
int /*y */ ,
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include "include/pixmap.h"
|
#include "include/pixmap.h"
|
||||||
#include "include/regionstr.h"
|
#include "include/regionstr.h"
|
||||||
#include "include/screenint.h"
|
#include "include/screenint.h"
|
||||||
|
#include "include/validate.h"
|
||||||
#include "include/window.h"
|
#include "include/window.h"
|
||||||
#include "mi/mi.h"
|
#include "mi/mi.h"
|
||||||
|
|
||||||
|
@ -59,5 +60,6 @@ void miMarkWindow(WindowPtr pWin);
|
||||||
Bool miMarkOverlappedWindows(WindowPtr pWin, WindowPtr pFirst,
|
Bool miMarkOverlappedWindows(WindowPtr pWin, WindowPtr pFirst,
|
||||||
WindowPtr *ppLayerWin);
|
WindowPtr *ppLayerWin);
|
||||||
void miHandleValidateExposures(WindowPtr pWin);
|
void miHandleValidateExposures(WindowPtr pWin);
|
||||||
|
void miMoveWindow(WindowPtr pWin, int x, int y, WindowPtr pNextSib, VTKind kind);
|
||||||
|
|
||||||
#endif /* _XSERVER_MI_PRIV_H */
|
#endif /* _XSERVER_MI_PRIV_H */
|
||||||
|
|
Loading…
Reference in New Issue