diff options
author | Kevin Walzer <kw@codebykevin.com> | 2020-08-31 01:51:15 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2020-08-31 01:51:15 (GMT) |
commit | 1615f41ef62d4bc85b1d240524b09831d905a10c (patch) | |
tree | ca8927bc055bf3949709c16db0a238f8ceefd5f0 /win/tkWinIco.c | |
parent | c9bf8ea3480b3664e9d03018544897d8a7c51544 (diff) | |
download | tk-1615f41ef62d4bc85b1d240524b09831d905a10c.zip tk-1615f41ef62d4bc85b1d240524b09831d905a10c.tar.gz tk-1615f41ef62d4bc85b1d240524b09831d905a10c.tar.bz2 |
Remove static keywords
Diffstat (limited to 'win/tkWinIco.c')
-rw-r--r-- | win/tkWinIco.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/win/tkWinIco.c b/win/tkWinIco.c index f158117..e380bba 100644 --- a/win/tkWinIco.c +++ b/win/tkWinIco.c @@ -28,7 +28,7 @@ *---------------------------------------------------------------------- */ -static WORD +WORD DIBNumColors( LPSTR lpbi) { @@ -54,7 +54,7 @@ DIBNumColors( return 0; } } - + /* *---------------------------------------------------------------------- * @@ -68,13 +68,13 @@ DIBNumColors( * *---------------------------------------------------------------------- */ -static WORD + WORD PaletteSize( LPSTR lpbi) { return (WORD) (DIBNumColors(lpbi) * sizeof(RGBQUAD)); } - + /* *---------------------------------------------------------------------- * @@ -92,13 +92,13 @@ PaletteSize( *---------------------------------------------------------------------- */ -static LPSTR +LPSTR FindDIBBits( LPSTR lpbi) { return lpbi + *((LPDWORD) lpbi) + PaletteSize(lpbi); } - + /* *---------------------------------------------------------------------- * @@ -114,13 +114,13 @@ FindDIBBits( *---------------------------------------------------------------------- */ -static DWORD +DWORD BytesPerLine( LPBITMAPINFOHEADER lpBMIH) { return WIDTHBYTES(lpBMIH->biWidth * lpBMIH->biPlanes * lpBMIH->biBitCount); } - + /* * Local Variables: |