diff options
author | hobbs <hobbs> | 2000-01-06 02:22:51 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-06 02:22:51 (GMT) |
commit | 619d61370bf4a114eae046541741cb9fcd941275 (patch) | |
tree | f7b4a6880fdf5c438572147de5f4707868eeb74d /win/tkWinImage.c | |
parent | 6dd6f78acaf07d5c334e15e375e24db54641a0da (diff) | |
download | tk-619d61370bf4a114eae046541741cb9fcd941275.zip tk-619d61370bf4a114eae046541741cb9fcd941275.tar.gz tk-619d61370bf4a114eae046541741cb9fcd941275.tar.bz2 |
* win/tkWinImage.c: added static declaration to function
Diffstat (limited to 'win/tkWinImage.c')
-rw-r--r-- | win/tkWinImage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tkWinImage.c b/win/tkWinImage.c index be61cc9..448ad72 100644 --- a/win/tkWinImage.c +++ b/win/tkWinImage.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinImage.c,v 1.2 1998/09/14 18:24:00 stanton Exp $ + * RCS: @(#) $Id: tkWinImage.c,v 1.3 2000/01/06 02:22:51 hobbs Exp $ */ #include "tkWinInt.h" @@ -35,7 +35,7 @@ static int PutPixel _ANSI_ARGS_((XImage *image, int x, int y, *---------------------------------------------------------------------- */ -int +static int DestroyImage(imagePtr) XImage *imagePtr; /* image to free */ { @@ -64,7 +64,7 @@ DestroyImage(imagePtr) *---------------------------------------------------------------------- */ -unsigned long +static unsigned long ImageGetPixel(image, x, y) XImage *image; int x, y; |