dix: unexport IsMapInstalled()
Not used by any driver/module, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1581>
This commit is contained in:
parent
5eca51a5d2
commit
a3ec1a829d
|
@ -35,6 +35,7 @@ in this Software without prior written authorization from the X Consortium.
|
||||||
#include <X11/Xproto.h>
|
#include <X11/Xproto.h>
|
||||||
#include <X11/extensions/saverproto.h>
|
#include <X11/extensions/saverproto.h>
|
||||||
|
|
||||||
|
#include "dix/colormap_priv.h"
|
||||||
#include "dix/dix_priv.h"
|
#include "dix/dix_priv.h"
|
||||||
#include "os/screensaver.h"
|
#include "os/screensaver.h"
|
||||||
|
|
||||||
|
|
|
@ -51,4 +51,6 @@ int FreeColors(ColormapPtr pmap, int client, int count, Pixel *pixels, Pixel mas
|
||||||
|
|
||||||
int StoreColors(ColormapPtr pmap, int count, xColorItem * defs, ClientPtr client);
|
int StoreColors(ColormapPtr pmap, int count, xColorItem * defs, ClientPtr client);
|
||||||
|
|
||||||
|
int IsMapInstalled(Colormap map, WindowPtr pWin);
|
||||||
|
|
||||||
#endif /* _XSERVER_DIX_COLORMAP_PRIV_H */
|
#endif /* _XSERVER_DIX_COLORMAP_PRIV_H */
|
||||||
|
|
|
@ -100,6 +100,7 @@ Equipment Corporation.
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "dix/colormap_priv.h"
|
||||||
#include "dix/dix_priv.h"
|
#include "dix/dix_priv.h"
|
||||||
#include "dix/exevents_priv.h"
|
#include "dix/exevents_priv.h"
|
||||||
#include "dix/input_priv.h"
|
#include "dix/input_priv.h"
|
||||||
|
|
|
@ -74,9 +74,6 @@ typedef CARD32 Pixel;
|
||||||
/* moved to screenint.h: typedef struct _ColormapRec *ColormapPtr */
|
/* moved to screenint.h: typedef struct _ColormapRec *ColormapPtr */
|
||||||
typedef struct _colorResource *colorResourcePtr;
|
typedef struct _colorResource *colorResourcePtr;
|
||||||
|
|
||||||
extern _X_EXPORT int IsMapInstalled(Colormap /*map */ ,
|
|
||||||
WindowPtr /*pWin */ );
|
|
||||||
|
|
||||||
extern _X_EXPORT Bool ResizeVisualArray(ScreenPtr /* pScreen */ ,
|
extern _X_EXPORT Bool ResizeVisualArray(ScreenPtr /* pScreen */ ,
|
||||||
int /* new_vis_count */ ,
|
int /* new_vis_count */ ,
|
||||||
DepthPtr /* depth */ );
|
DepthPtr /* depth */ );
|
||||||
|
|
Loading…
Reference in New Issue