Restore the global xx* symbols and add them to wfbrename.h.
I don't think they're ever used, but it's best to just leave them alone for ABI compatibility.
This commit is contained in:
parent
d16e83413e
commit
f9542e7495
|
@ -143,10 +143,10 @@ typedef struct _xxGCPriv {
|
||||||
(pGC)->devPrivates[xxGCPrivateIndex].ptr)
|
(pGC)->devPrivates[xxGCPrivateIndex].ptr)
|
||||||
#define xxGCPriv(pGC) xxGCPrivPtr pGCPriv = xxGetGCPriv(pGC)
|
#define xxGCPriv(pGC) xxGCPrivPtr pGCPriv = xxGetGCPriv(pGC)
|
||||||
|
|
||||||
static int xxScrPrivateIndex = -1;
|
int xxScrPrivateIndex = -1;
|
||||||
static int xxGCPrivateIndex;
|
int xxGCPrivateIndex;
|
||||||
static int xxColormapPrivateIndex = -1;
|
int xxColormapPrivateIndex = -1;
|
||||||
static int xxGeneration;
|
int xxGeneration;
|
||||||
|
|
||||||
|
|
||||||
#define wrap(priv,real,mem,func) {\
|
#define wrap(priv,real,mem,func) {\
|
||||||
|
@ -1199,7 +1199,7 @@ xxSetup(ScreenPtr pScreen, int myDepth, int baseDepth, char* addr, xxSyncFunc sy
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GCFuncs xxGCFuncs = {
|
GCFuncs xxGCFuncs = {
|
||||||
xxValidateGC, xxChangeGC, xxCopyGC, xxDestroyGC,
|
xxValidateGC, xxChangeGC, xxCopyGC, xxDestroyGC,
|
||||||
xxChangeClip, xxDestroyClip, xxCopyClip
|
xxChangeClip, xxDestroyClip, xxCopyClip
|
||||||
};
|
};
|
||||||
|
|
|
@ -187,6 +187,12 @@
|
||||||
#define fbWinPrivateIndex wfbWinPrivateIndex
|
#define fbWinPrivateIndex wfbWinPrivateIndex
|
||||||
#define fbZeroLine wfbZeroLine
|
#define fbZeroLine wfbZeroLine
|
||||||
#define fbZeroSegment wfbZeroSegment
|
#define fbZeroSegment wfbZeroSegment
|
||||||
|
#define xxScrPrivateIndex wfbxxScrPrivateIndex
|
||||||
|
#define xxGCPrivateIndex wfbxxGCPrivateIndex
|
||||||
|
#define xxColormapPrivateIndex wfbxxColormapPrivateIndex
|
||||||
|
#define xxGeneration wfbxxGeneration
|
||||||
#define xxPrintVisuals wfbxxPrintVisuals
|
#define xxPrintVisuals wfbxxPrintVisuals
|
||||||
|
#define xxGCFuncs wfbxxGCFuncs
|
||||||
|
#define xxGCOps wfbxxGCOps
|
||||||
#define xxSetup wfbxxSetup
|
#define xxSetup wfbxxSetup
|
||||||
#define composeFunctions wfbComposeFunctions
|
#define composeFunctions wfbComposeFunctions
|
||||||
|
|
Loading…
Reference in New Issue