summaryrefslogtreecommitdiff
path: root/os/io.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2006-02-15 20:44:13 +0000
committerAdam Jackson <ajax@nwnk.net>2006-02-15 20:44:13 +0000
commitf105b8da11fcf337512b3c39da3368f98da07a33 (patch)
tree8d2c7b8ee5657f0d630bd50956819d77e2d071a5 /os/io.c
parent010d6effa6fa210251b12459882e88aeee82c2c0 (diff)
Mark everything in dixsym.c as _X_EXPORT.
Diffstat (limited to 'os/io.c')
-rw-r--r--os/io.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/os/io.c b/os/io.c
index 76edbaeee..867512d55 100644
--- a/os/io.c
+++ b/os/io.c
@@ -91,8 +91,8 @@ SOFTWARE.
#include "lbxserve.h"
#endif
-CallbackListPtr ReplyCallback;
-CallbackListPtr FlushCallback;
+_X_EXPORT CallbackListPtr ReplyCallback;
+_X_EXPORT CallbackListPtr FlushCallback;
/* check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
* systems are broken and return EWOULDBLOCK when they should return EAGAIN
@@ -602,7 +602,7 @@ InsertFakeRequest(ClientPtr client, char *data, int count)
*
**********************/
-void
+_X_EXPORT void
ResetCurrentRequest(ClientPtr client)
{
OsCommPtr oc = (OsCommPtr)client->osPrivate;
@@ -745,7 +745,7 @@ PeekNextRequest(
*
**********************/
-CallbackListPtr SkippedRequestsCallback = NULL;
+_X_EXPORT CallbackListPtr SkippedRequestsCallback = NULL;
void
SkipRequests(
@@ -897,7 +897,7 @@ FlushIfCriticalOutputPending(void)
FlushAllOutput();
}
-void
+_X_EXPORT void
SetCriticalOutputPending(void)
{
CriticalOutputPending = TRUE;
@@ -914,7 +914,7 @@ SetCriticalOutputPending(void)
* this routine as int.
*****************/
-int
+_X_EXPORT int
WriteToClient (ClientPtr who, int count, char *buf)
{
OsCommPtr oc = (OsCommPtr)who->osPrivate;