dix: drop obsolete WriteSwappedDataToClient() macro

This macro isn't and shouldn't be used anymore, so get rid of it.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-07-16 11:50:59 +02:00
committed by Enrico Weigelt
parent 6638af9138
commit 7c3ddc80ef
3 changed files with 2 additions and 13 deletions

View File

@@ -90,14 +90,6 @@ SOFTWARE.
return(BadLength); \
} while (0)
#define WriteSwappedDataToClient(pClient, size, pbuf) \
do { \
if ((pClient)->swapped) \
(*(pClient)->pSwapReplyFunc)(pClient, (int)(size), pbuf); \
else \
WriteToClient(pClient, (int)(size), (pbuf)); \
} while (0)
typedef struct _TimeStamp *TimeStampPtr;
#ifndef _XTYPEDEF_CLIENTPTR