From 80ac8c6d04c04ec1f892883397507f32292ae590 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Wed, 6 May 2009 09:42:48 -0700 Subject: Ansify prototypes and move extern declarations to header files Signed-off-by: Alan Coopersmith --- decode_randr.c | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'decode_randr.c') diff --git a/decode_randr.c b/decode_randr.c index dfe9a3d..aa86de5 100644 --- a/decode_randr.c +++ b/decode_randr.c @@ -35,9 +35,10 @@ unsigned char LookForRANDRFlag; unsigned char RANDRRequest, RANDRError, RANDREvent; -randr_decode_req(fd, buf) -FD fd; -unsigned char *buf; +void +randr_decode_req ( + FD fd, + unsigned char *buf) { short Major = IByte (&buf[0]); short Minor = IByte (&buf[1]); @@ -52,10 +53,11 @@ unsigned char *buf; } } -randr_decode_reply(fd, buf, RequestMinor) - FD fd; - unsigned char *buf; - short RequestMinor; +void +randr_decode_reply ( + FD fd, + unsigned char *buf, + short RequestMinor) { switch (RequestMinor) { case 0: RandrQueryVersionReply (fd, buf); break; @@ -64,17 +66,19 @@ randr_decode_reply(fd, buf, RequestMinor) } } -randr_decode_event (fd, buf) - FD fd; - unsigned char *buf; +void +randr_decode_event ( + FD fd, + unsigned char *buf) { RandrScreenChangeNotifyEvent (buf); } -InitializeRANDR(buf) - unsigned char *buf; +void +InitializeRANDR ( + unsigned char *buf) { - TYPE p, DefineType (); + TYPE p; RANDRRequest = (unsigned char)(buf[9]); RANDREvent = (unsigned char)(buf[10]); -- cgit v1.2.1