Module: wine Branch: master Commit: 62545611b216d204ee9be920070c8f959a509b03 URL: http://source.winehq.org/git/wine.git/?a=commit;h=62545611b216d204ee9be92007...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon Mar 19 21:31:25 2007 +0000
comctl32: Constify some variables.
---
dlls/comctl32/animate.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/dlls/comctl32/animate.c b/dlls/comctl32/animate.c index 5089549..a0f390f 100644 --- a/dlls/comctl32/animate.c +++ b/dlls/comctl32/animate.c @@ -100,7 +100,7 @@ static void ANIMATE_Notify(ANIMATE_INFO *infoPtr, UINT notif) (LPARAM)infoPtr->hwndSelf); }
-static BOOL ANIMATE_LoadResW(ANIMATE_INFO *infoPtr, HINSTANCE hInst, LPWSTR lpName) +static BOOL ANIMATE_LoadResW(ANIMATE_INFO *infoPtr, HINSTANCE hInst, LPCWSTR lpName) { static const WCHAR aviW[] = { 'A', 'V', 'I', 0 }; HRSRC hrsrc; @@ -217,7 +217,7 @@ static void ANIMATE_Free(ANIMATE_INFO *infoPtr) infoPtr->transparentColor = ANIMATE_COLOR_NONE; }
-static void ANIMATE_TransparentBlt(ANIMATE_INFO *infoPtr, HDC hdcDest, HDC hdcSource) +static void ANIMATE_TransparentBlt(ANIMATE_INFO const *infoPtr, HDC hdcDest, HDC hdcSource) { HDC hdcMask; HBITMAP hbmMask; @@ -251,8 +251,8 @@ static void ANIMATE_TransparentBlt(ANIMATE_INFO *infoPtr, HDC hdcDest, HDC hdcSo
static BOOL ANIMATE_PaintFrame(ANIMATE_INFO* infoPtr, HDC hDC) { - void *pBitmapData; - LPBITMAPINFO pBitmapInfo; + void const *pBitmapData; + BITMAPINFO const *pBitmapInfo; HDC hdcMem; HBITMAP hbmOld; int nOffsetX = 0; @@ -825,7 +825,7 @@ static LRESULT ANIMATE_Destroy(ANIMATE_INFO *infoPtr) }
-static BOOL ANIMATE_EraseBackground(ANIMATE_INFO *infoPtr, HDC hdc) +static BOOL ANIMATE_EraseBackground(ANIMATE_INFO const *infoPtr, HDC hdc) { RECT rect; HBRUSH hBrush = 0;