From f7bfa53327c6b2c6122e8ad5ae91a177252ec4af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C3=85strand?= Date: Mon, 10 Feb 2003 13:02:57 +0000 Subject: [PATCH] Private funcs should be static. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@318 423420c4-83ab-492f-b58f-81f9feb106b5 --- xwin.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/xwin.c b/xwin.c index b2a4d5b..8c9959e 100644 --- a/xwin.c +++ b/xwin.c @@ -122,7 +122,7 @@ static int rop2_map[] = { #define SET_FUNCTION(rop2) { if (rop2 != ROP2_COPY) XSetFunction(display, gc, rop2_map[rop2]); } #define RESET_FUNCTION(rop2) { if (rop2 != ROP2_COPY) XSetFunction(display, gc, GXcopy); } -void +static void mwm_hide_decorations(void) { PropMotifWmHints motif_hints; @@ -144,7 +144,7 @@ mwm_hide_decorations(void) (unsigned char *) &motif_hints, PROP_MOTIF_WM_HINTS_ELEMENTS); } -PixelColour +static PixelColour split_colour15(uint32 colour) { PixelColour rv; @@ -157,7 +157,7 @@ split_colour15(uint32 colour) return rv; } -PixelColour +static PixelColour split_colour16(uint32 colour) { PixelColour rv; @@ -170,7 +170,7 @@ split_colour16(uint32 colour) return rv; } -PixelColour +static PixelColour split_colour24(uint32 colour) { PixelColour rv; @@ -180,7 +180,7 @@ split_colour24(uint32 colour) return rv; } -uint32 +static uint32 make_colour16(PixelColour pc) { pc.red = (pc.red * 0x1f) / 0xff; @@ -189,13 +189,13 @@ make_colour16(PixelColour pc) return (pc.red << 11) | (pc.green << 5) | pc.blue; } -uint32 +static uint32 make_colour24(PixelColour pc) { return (pc.red << 16) | (pc.green << 8) | pc.blue; } -uint32 +static uint32 make_colour32(PixelColour pc) { return (pc.red << 16) | (pc.green << 8) | pc.blue;