summaryrefslogtreecommitdiff
path: root/src/process.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2008-10-30 12:01:06 +0100
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-06 17:15:13 -0200
commitb01e82ce1deedb36c9696d4d27a3b9a5d5a52d08 (patch)
tree4e7d624bec961376da0ff497c2757699160d0483 /src/process.c
parent2aba1bc0583aeb3ee6e26e3bfacd123abef744d9 (diff)
ANSI C
convert all old style function declarations see also: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> http://bugs.freedesktop.org/show_bug.cgi?id=14683 http://bugs.freedesktop.org/attachment.cgi?id=14582 see also: Magnus Kessler <Magnus.Kessler@gmx.net> http://lists.freedesktop.org/archives/xorg/2008-October/039799.html http://lists.freedesktop.org/archives/xorg/attachments/20081030/b2ea5b1c/attachment-0001.bin
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c215
1 files changed, 98 insertions, 117 deletions
diff --git a/src/process.c b/src/process.c
index ebb91c3..7797641 100644
--- a/src/process.c
+++ b/src/process.c
@@ -124,12 +124,11 @@ Author: Ralph Mor, X Consortium
*/
IceProcessMessagesStatus
-IceProcessMessages (iceConn, replyWait, replyReadyRet)
-
-IceConn iceConn;
-IceReplyWaitInfo *replyWait;
-Bool *replyReadyRet;
-
+IceProcessMessages (
+ IceConn iceConn,
+ IceReplyWaitInfo *replyWait,
+ Bool *replyReadyRet
+)
{
iceMsg *header;
Bool replyReady = False;
@@ -390,13 +389,12 @@ Bool *replyReadyRet;
static void
-AuthRequired (iceConn, authIndex, authDataLen, authData)
-
-IceConn iceConn;
-int authIndex;
-int authDataLen;
-IcePointer authData;
-
+AuthRequired (
+ IceConn iceConn,
+ int authIndex,
+ int authDataLen,
+ IcePointer authData
+)
{
iceAuthRequiredMsg *pMsg;
@@ -418,12 +416,11 @@ IcePointer authData;
static void
-AuthReply (iceConn, authDataLen, authData)
-
-IceConn iceConn;
-int authDataLen;
-IcePointer authData;
-
+AuthReply (
+ IceConn iceConn,
+ int authDataLen,
+ IcePointer authData
+)
{
iceAuthReplyMsg *pMsg;
@@ -444,12 +441,11 @@ IcePointer authData;
static void
-AuthNextPhase (iceConn, authDataLen, authData)
-
-IceConn iceConn;
-int authDataLen;
-IcePointer authData;
-
+AuthNextPhase (
+ IceConn iceConn,
+ int authDataLen,
+ IcePointer authData
+)
{
iceAuthNextPhaseMsg *pMsg;
@@ -470,11 +466,10 @@ IcePointer authData;
static void
-AcceptConnection (iceConn, versionIndex)
-
-IceConn iceConn;
-int versionIndex;
-
+AcceptConnection (
+ IceConn iceConn,
+ int versionIndex
+)
{
iceConnectionReplyMsg *pMsg;
char *pData;
@@ -499,15 +494,14 @@ int versionIndex;
static void
-AcceptProtocol (iceConn, hisOpcode, myOpcode, versionIndex, vendor, release)
-
-IceConn iceConn;
-int hisOpcode;
-int myOpcode;
-int versionIndex;
-char *vendor;
-char *release;
-
+AcceptProtocol (
+ IceConn iceConn,
+ int hisOpcode,
+ int myOpcode,
+ int versionIndex,
+ char *vendor,
+ char *release
+)
{
iceProtocolReplyMsg *pMsg;
char *pData;
@@ -540,10 +534,9 @@ char *release;
static void
-PingReply (iceConn)
-
-IceConn iceConn;
-
+PingReply (
+ IceConn iceConn
+)
{
IceSimpleMessage (iceConn, 0, ICE_PingReply);
IceFlush (iceConn);
@@ -552,13 +545,12 @@ IceConn iceConn;
static Bool
-ProcessError (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessError (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
int invokeHandler = 0;
Bool errorReturned = False;
@@ -822,12 +814,11 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessConnectionSetup (iceConn, length, swap)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-
+ProcessConnectionSetup (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap
+)
{
iceConnectionSetupMsg *message;
int myVersionCount, hisVersionCount;
@@ -1077,13 +1068,12 @@ Bool swap;
static Bool
-ProcessAuthRequired (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessAuthRequired (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceAuthRequiredMsg *message;
int authDataLen;
@@ -1272,12 +1262,11 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessAuthReply (iceConn, length, swap)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-
+ProcessAuthReply (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap
+)
{
iceAuthReplyMsg *message;
int replyDataLen;
@@ -1568,13 +1557,12 @@ Bool swap;
static Bool
-ProcessAuthNextPhase (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessAuthNextPhase (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceAuthNextPhaseMsg *message;
int authDataLen;
@@ -1701,13 +1689,12 @@ IceReplyWaitInfo *replyWait;
static Bool
-ProcessConnectionReply (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessConnectionReply (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceConnectionReplyMsg *message;
char *pData, *pStart, *pEnd;
@@ -1804,12 +1791,11 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessProtocolSetup (iceConn, length, swap)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-
+ProcessProtocolSetup (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap
+)
{
iceProtocolSetupMsg *message;
_IcePaProtocol *myProtocol;
@@ -2202,13 +2188,12 @@ Bool swap;
static Bool
-ProcessProtocolReply (iceConn, length, swap, replyWait)
-
-IceConn iceConn;
-unsigned long length;
-Bool swap;
-IceReplyWaitInfo *replyWait;
-
+ProcessProtocolReply (
+ IceConn iceConn,
+ unsigned long length,
+ Bool swap,
+ IceReplyWaitInfo *replyWait
+)
{
iceProtocolReplyMsg *message;
char *pData, *pStart, *pEnd;
@@ -2317,11 +2302,10 @@ IceReplyWaitInfo *replyWait;
static int
-ProcessPing (iceConn, length)
-
-IceConn iceConn;
-unsigned long length;
-
+ProcessPing (
+ IceConn iceConn,
+ unsigned long length
+)
{
CHECK_SIZE_MATCH (iceConn, ICE_Ping,
length, SIZEOF (icePingMsg), IceFatalToConnection, 0);
@@ -2334,11 +2318,10 @@ unsigned long length;
static int
-ProcessPingReply (iceConn, length)
-
-IceConn iceConn;
-unsigned long length;
-
+ProcessPingReply (
+ IceConn iceConn,
+ unsigned long length
+)
{
CHECK_SIZE_MATCH (iceConn, ICE_PingReply,
length, SIZEOF (icePingReplyMsg), IceFatalToConnection, 0);
@@ -2364,12 +2347,11 @@ unsigned long length;
static int
-ProcessWantToClose (iceConn, length, connectionClosedRet)
-
-IceConn iceConn;
-unsigned long length;
-Bool *connectionClosedRet;
-
+ProcessWantToClose (
+ IceConn iceConn,
+ unsigned long length,
+ Bool *connectionClosedRet
+)
{
*connectionClosedRet = False;
@@ -2424,11 +2406,10 @@ Bool *connectionClosedRet;
static int
-ProcessNoClose (iceConn, length)
-
-IceConn iceConn;
-unsigned long length;
-
+ProcessNoClose (
+ IceConn iceConn,
+ unsigned long length
+)
{
CHECK_SIZE_MATCH (iceConn, ICE_NoClose,
length, SIZEOF (iceNoCloseMsg), IceFatalToConnection, 0);