dix: unexport MakeWindowOptional()
Really internal, should not be used by drivers. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
08cca901d4
commit
3d53ec7ed3
|
@ -31,5 +31,14 @@ WindowPtr dixCreateWindow(Window wid,
|
||||||
ClientPtr client,
|
ClientPtr client,
|
||||||
VisualID visual,
|
VisualID visual,
|
||||||
int * error);
|
int * error);
|
||||||
|
/*
|
||||||
|
* @brief Make sure the window->optional structure exists.
|
||||||
|
*
|
||||||
|
* allocate if window->optional == NULL, otherwise do nothing.
|
||||||
|
*
|
||||||
|
* @param pWin the window to operate on
|
||||||
|
* @return FALSE if allocation failed, otherwise TRUE
|
||||||
|
*/
|
||||||
|
Bool MakeWindowOptional(WindowPtr pWin);
|
||||||
|
|
||||||
#endif /* _XSERVER_DIX_WINDOW_PRIV_H */
|
#endif /* _XSERVER_DIX_WINDOW_PRIV_H */
|
||||||
|
|
|
@ -190,8 +190,6 @@ extern _X_EXPORT WindowPtr FindWindowWithOptional(WindowPtr /*w */ );
|
||||||
|
|
||||||
extern _X_EXPORT void CheckWindowOptionalNeed(WindowPtr /*w */ );
|
extern _X_EXPORT void CheckWindowOptionalNeed(WindowPtr /*w */ );
|
||||||
|
|
||||||
extern _X_EXPORT Bool MakeWindowOptional(WindowPtr /*pWin */ );
|
|
||||||
|
|
||||||
extern _X_EXPORT WindowPtr MoveWindowInStack(WindowPtr /*pWin */ ,
|
extern _X_EXPORT WindowPtr MoveWindowInStack(WindowPtr /*pWin */ ,
|
||||||
WindowPtr /*pNextSib */ );
|
WindowPtr /*pNextSib */ );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue