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:
|
||||
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>
|
||||
|
||||
* GL/symlink-mesa.sh:
|
||||
|
|
|
@ -76,10 +76,10 @@ static unsigned char PanoramiXReqCode = 0;
|
|||
|
||||
int PanoramiXPixWidth = 0;
|
||||
int PanoramiXPixHeight = 0;
|
||||
int PanoramiXNumScreens = 0;
|
||||
_X_EXPORT int PanoramiXNumScreens = 0;
|
||||
|
||||
PanoramiXData *panoramiXdataPtr = NULL;
|
||||
RegionRec PanoramiXScreenRegion = {{0, 0, 0, 0}, NULL};
|
||||
_X_EXPORT PanoramiXData *panoramiXdataPtr = NULL;
|
||||
RegionRec PanoramiXScreenRegion = {{0, 0, 0, 0}, NULL};
|
||||
|
||||
static int PanoramiXNumDepths;
|
||||
static DepthPtr PanoramiXDepths;
|
||||
|
@ -87,13 +87,13 @@ static int PanoramiXNumVisuals;
|
|||
static VisualPtr PanoramiXVisuals;
|
||||
|
||||
/* We support at most 256 visuals */
|
||||
XID *PanoramiXVisualTable = NULL;
|
||||
_X_EXPORT XID *PanoramiXVisualTable = NULL;
|
||||
|
||||
unsigned long XRC_DRAWABLE;
|
||||
unsigned long XRT_WINDOW;
|
||||
unsigned long XRT_PIXMAP;
|
||||
unsigned long XRT_GC;
|
||||
unsigned long XRT_COLORMAP;
|
||||
_X_EXPORT unsigned long XRC_DRAWABLE;
|
||||
_X_EXPORT unsigned long XRT_WINDOW;
|
||||
_X_EXPORT unsigned long XRT_PIXMAP;
|
||||
_X_EXPORT unsigned long XRT_GC;
|
||||
_X_EXPORT unsigned long XRT_COLORMAP;
|
||||
|
||||
/*
|
||||
* Function prototypes
|
||||
|
@ -334,7 +334,7 @@ XineramaDestroyClip(GCPtr pGC)
|
|||
|
||||
|
||||
|
||||
int
|
||||
_X_EXPORT int
|
||||
XineramaDeleteResource(pointer data, XID id)
|
||||
{
|
||||
xfree(data);
|
||||
|
@ -415,7 +415,7 @@ typedef struct _connect_callback_list {
|
|||
|
||||
static XineramaConnectionCallbackList *ConnectionCallbackList = NULL;
|
||||
|
||||
Bool
|
||||
_X_EXPORT Bool
|
||||
XineramaRegisterConnectionBlockCallback(void (*func)(void))
|
||||
{
|
||||
XineramaConnectionCallbackList *newlist;
|
||||
|
|
|
@ -112,9 +112,9 @@ static DISPATCH_PROC(SProcShmPutImage);
|
|||
static DISPATCH_PROC(SProcShmQueryVersion);
|
||||
|
||||
static unsigned char ShmReqCode;
|
||||
int ShmCompletionCode;
|
||||
int BadShmSegCode;
|
||||
RESTYPE ShmSegType;
|
||||
_X_EXPORT int ShmCompletionCode;
|
||||
_X_EXPORT int BadShmSegCode;
|
||||
_X_EXPORT RESTYPE ShmSegType;
|
||||
static ShmDescPtr Shmsegs;
|
||||
static Bool sharedPixmaps;
|
||||
static int pixmapFormat;
|
||||
|
|
|
@ -79,7 +79,7 @@ static void SertafiedWakeupHandler(
|
|||
pointer /* LastSelectMask */
|
||||
);
|
||||
|
||||
int
|
||||
_X_EXPORT int
|
||||
ClientSleepUntil (client, revive, notifyFunc, closure)
|
||||
ClientPtr client;
|
||||
TimeStamp *revive;
|
||||
|
|
|
@ -157,7 +157,7 @@ ValidAtom(Atom atom)
|
|||
return (atom != None) && (atom <= lastAtom);
|
||||
}
|
||||
|
||||
char *
|
||||
_X_EXPORT char *
|
||||
NameForAtom(Atom atom)
|
||||
{
|
||||
NodePtr node;
|
||||
|
|
Loading…
Reference in New Issue