dix: unexport CreateGC()
Not used by any drivers, so no need to export it. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1365>
This commit is contained in:
parent
46c0ac8c70
commit
6896396456
|
@ -11,4 +11,11 @@
|
||||||
|
|
||||||
int ChangeGCXIDs(ClientPtr client, GCPtr pGC, BITS32 mask, CARD32 * pval);
|
int ChangeGCXIDs(ClientPtr client, GCPtr pGC, BITS32 mask, CARD32 * pval);
|
||||||
|
|
||||||
|
GCPtr CreateGC(DrawablePtr pDrawable,
|
||||||
|
BITS32 mask,
|
||||||
|
XID *pval,
|
||||||
|
int *pStatus,
|
||||||
|
XID gcid,
|
||||||
|
ClientPtr client);
|
||||||
|
|
||||||
#endif /* _XSERVER_DIX_GC_PRIV_H */
|
#endif /* _XSERVER_DIX_GC_PRIV_H */
|
||||||
|
|
|
@ -88,13 +88,6 @@ extern _X_EXPORT int ChangeGC(ClientPtr /*client */ ,
|
||||||
BITS32 /*mask */ ,
|
BITS32 /*mask */ ,
|
||||||
ChangeGCValPtr /*pCGCV */ );
|
ChangeGCValPtr /*pCGCV */ );
|
||||||
|
|
||||||
extern _X_EXPORT GCPtr CreateGC(DrawablePtr /*pDrawable */ ,
|
|
||||||
BITS32 /*mask */ ,
|
|
||||||
XID * /*pval */ ,
|
|
||||||
int * /*pStatus */ ,
|
|
||||||
XID /*gcid */ ,
|
|
||||||
ClientPtr /*client */ );
|
|
||||||
|
|
||||||
extern _X_EXPORT int CopyGC(GCPtr /*pgcSrc */ ,
|
extern _X_EXPORT int CopyGC(GCPtr /*pgcSrc */ ,
|
||||||
GCPtr /*pgcDst */ ,
|
GCPtr /*pgcDst */ ,
|
||||||
BITS32 /*mask */ );
|
BITS32 /*mask */ );
|
||||||
|
|
|
@ -34,6 +34,9 @@ in this Software without prior written authorization from The Open Group.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
||||||
|
#include "dix/gc_priv.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "cursorstr.h"
|
#include "cursorstr.h"
|
||||||
|
|
Loading…
Reference in New Issue