Mark everything in {ext,font}sym.c as _X_EXPORT.
This commit is contained in:
parent
3fe482c77e
commit
010d6effa6
|
@ -36,6 +36,12 @@
|
||||||
* render/miglyph.c:
|
* render/miglyph.c:
|
||||||
Mark everything in misym.c as _X_EXPORT.
|
Mark everything in misym.c as _X_EXPORT.
|
||||||
|
|
||||||
|
* Xext/panoramiX.c:
|
||||||
|
* Xext/shm.c:
|
||||||
|
* Xext/sleepuntil.c:
|
||||||
|
* dix/atom.c:
|
||||||
|
Mark everything in {ext,font}sym.c as _X_EXPORT.
|
||||||
|
|
||||||
2006-02-15 Kristian Høgsberg <krh@redhat.com>
|
2006-02-15 Kristian Høgsberg <krh@redhat.com>
|
||||||
|
|
||||||
* GL/symlink-mesa.sh:
|
* GL/symlink-mesa.sh:
|
||||||
|
|
|
@ -76,9 +76,9 @@ static unsigned char PanoramiXReqCode = 0;
|
||||||
|
|
||||||
int PanoramiXPixWidth = 0;
|
int PanoramiXPixWidth = 0;
|
||||||
int PanoramiXPixHeight = 0;
|
int PanoramiXPixHeight = 0;
|
||||||
int PanoramiXNumScreens = 0;
|
_X_EXPORT int PanoramiXNumScreens = 0;
|
||||||
|
|
||||||
PanoramiXData *panoramiXdataPtr = NULL;
|
_X_EXPORT PanoramiXData *panoramiXdataPtr = NULL;
|
||||||
RegionRec PanoramiXScreenRegion = {{0, 0, 0, 0}, NULL};
|
RegionRec PanoramiXScreenRegion = {{0, 0, 0, 0}, NULL};
|
||||||
|
|
||||||
static int PanoramiXNumDepths;
|
static int PanoramiXNumDepths;
|
||||||
|
@ -87,13 +87,13 @@ static int PanoramiXNumVisuals;
|
||||||
static VisualPtr PanoramiXVisuals;
|
static VisualPtr PanoramiXVisuals;
|
||||||
|
|
||||||
/* We support at most 256 visuals */
|
/* We support at most 256 visuals */
|
||||||
XID *PanoramiXVisualTable = NULL;
|
_X_EXPORT XID *PanoramiXVisualTable = NULL;
|
||||||
|
|
||||||
unsigned long XRC_DRAWABLE;
|
_X_EXPORT unsigned long XRC_DRAWABLE;
|
||||||
unsigned long XRT_WINDOW;
|
_X_EXPORT unsigned long XRT_WINDOW;
|
||||||
unsigned long XRT_PIXMAP;
|
_X_EXPORT unsigned long XRT_PIXMAP;
|
||||||
unsigned long XRT_GC;
|
_X_EXPORT unsigned long XRT_GC;
|
||||||
unsigned long XRT_COLORMAP;
|
_X_EXPORT unsigned long XRT_COLORMAP;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Function prototypes
|
* Function prototypes
|
||||||
|
@ -334,7 +334,7 @@ XineramaDestroyClip(GCPtr pGC)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int
|
_X_EXPORT int
|
||||||
XineramaDeleteResource(pointer data, XID id)
|
XineramaDeleteResource(pointer data, XID id)
|
||||||
{
|
{
|
||||||
xfree(data);
|
xfree(data);
|
||||||
|
@ -415,7 +415,7 @@ typedef struct _connect_callback_list {
|
||||||
|
|
||||||
static XineramaConnectionCallbackList *ConnectionCallbackList = NULL;
|
static XineramaConnectionCallbackList *ConnectionCallbackList = NULL;
|
||||||
|
|
||||||
Bool
|
_X_EXPORT Bool
|
||||||
XineramaRegisterConnectionBlockCallback(void (*func)(void))
|
XineramaRegisterConnectionBlockCallback(void (*func)(void))
|
||||||
{
|
{
|
||||||
XineramaConnectionCallbackList *newlist;
|
XineramaConnectionCallbackList *newlist;
|
||||||
|
|
|
@ -112,9 +112,9 @@ static DISPATCH_PROC(SProcShmPutImage);
|
||||||
static DISPATCH_PROC(SProcShmQueryVersion);
|
static DISPATCH_PROC(SProcShmQueryVersion);
|
||||||
|
|
||||||
static unsigned char ShmReqCode;
|
static unsigned char ShmReqCode;
|
||||||
int ShmCompletionCode;
|
_X_EXPORT int ShmCompletionCode;
|
||||||
int BadShmSegCode;
|
_X_EXPORT int BadShmSegCode;
|
||||||
RESTYPE ShmSegType;
|
_X_EXPORT RESTYPE ShmSegType;
|
||||||
static ShmDescPtr Shmsegs;
|
static ShmDescPtr Shmsegs;
|
||||||
static Bool sharedPixmaps;
|
static Bool sharedPixmaps;
|
||||||
static int pixmapFormat;
|
static int pixmapFormat;
|
||||||
|
|
|
@ -79,7 +79,7 @@ static void SertafiedWakeupHandler(
|
||||||
pointer /* LastSelectMask */
|
pointer /* LastSelectMask */
|
||||||
);
|
);
|
||||||
|
|
||||||
int
|
_X_EXPORT int
|
||||||
ClientSleepUntil (client, revive, notifyFunc, closure)
|
ClientSleepUntil (client, revive, notifyFunc, closure)
|
||||||
ClientPtr client;
|
ClientPtr client;
|
||||||
TimeStamp *revive;
|
TimeStamp *revive;
|
||||||
|
|
|
@ -157,7 +157,7 @@ ValidAtom(Atom atom)
|
||||||
return (atom != None) && (atom <= lastAtom);
|
return (atom != None) && (atom <= lastAtom);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
_X_EXPORT char *
|
||||||
NameForAtom(Atom atom)
|
NameForAtom(Atom atom)
|
||||||
{
|
{
|
||||||
NodePtr node;
|
NodePtr node;
|
||||||
|
|
Loading…
Reference in New Issue