comctl32: Constify some variables.

oldstable
Andrew Talbot 2007-03-31 17:42:01 +01:00 committed by Alexandre Julliard
parent a07e9c6933
commit 9a76763c90
4 changed files with 6 additions and 6 deletions

View File

@ -93,7 +93,7 @@ typedef struct
#define ANIMATE_COLOR_NONE 0xffffffff #define ANIMATE_COLOR_NONE 0xffffffff
static void ANIMATE_Notify(ANIMATE_INFO *infoPtr, UINT notif) static void ANIMATE_Notify(const ANIMATE_INFO *infoPtr, UINT notif)
{ {
SendMessageW(infoPtr->hwndNotify, WM_COMMAND, SendMessageW(infoPtr->hwndNotify, WM_COMMAND,
MAKEWPARAM(GetDlgCtrlID(infoPtr->hwndSelf), notif), MAKEWPARAM(GetDlgCtrlID(infoPtr->hwndSelf), notif),
@ -772,7 +772,7 @@ static BOOL ANIMATE_Stop(ANIMATE_INFO *infoPtr)
} }
static BOOL ANIMATE_Create(HWND hWnd, LPCREATESTRUCTW lpcs) static BOOL ANIMATE_Create(HWND hWnd, const CREATESTRUCTW *lpcs)
{ {
static const WCHAR msvfw32W[] = { 'm', 's', 'v', 'f', 'w', '3', '2', '.', 'd', 'l', 'l', 0 }; static const WCHAR msvfw32W[] = { 'm', 's', 'v', 'f', 'w', '3', '2', '.', 'd', 'l', 'l', 0 };
ANIMATE_INFO *infoPtr; ANIMATE_INFO *infoPtr;
@ -843,7 +843,7 @@ static BOOL ANIMATE_EraseBackground(ANIMATE_INFO const *infoPtr, HDC hdc)
} }
static LRESULT ANIMATE_StyleChanged(ANIMATE_INFO *infoPtr, WPARAM wStyleType, LPSTYLESTRUCT lpss) static LRESULT ANIMATE_StyleChanged(ANIMATE_INFO *infoPtr, WPARAM wStyleType, const STYLESTRUCT *lpss)
{ {
TRACE("(styletype=%x, styleOld=0x%08x, styleNew=0x%08x)\n", TRACE("(styletype=%x, styleOld=0x%08x, styleNew=0x%08x)\n",
wStyleType, lpss->styleOld, lpss->styleNew); wStyleType, lpss->styleOld, lpss->styleNew);

View File

@ -1019,7 +1019,7 @@ typedef struct tagNOTIFYDATA
* DoNotify [Internal] * DoNotify [Internal]
*/ */
static LRESULT DoNotify (LPNOTIFYDATA lpNotify, UINT uCode, LPNMHDR lpHdr) static LRESULT DoNotify (const NOTIFYDATA *lpNotify, UINT uCode, LPNMHDR lpHdr)
{ {
NMHDR nmhdr; NMHDR nmhdr;
LPNMHDR lpNmh = NULL; LPNMHDR lpNmh = NULL;

View File

@ -1490,7 +1490,7 @@ static inline int IsDelimiter(WCHAR c)
return FALSE; return FALSE;
} }
static int CALLBACK PathWordBreakProc(LPWSTR lpch, int ichCurrent, int cch, int code) static int CALLBACK PathWordBreakProc(LPCWSTR lpch, int ichCurrent, int cch, int code)
{ {
if (code == WB_ISDELIMITER) if (code == WB_ISDELIMITER)
return IsDelimiter(lpch[ichCurrent]); return IsDelimiter(lpch[ichCurrent]);

View File

@ -137,7 +137,7 @@ static const int maxrepetition [] = {4,2,2,2,4,2,2,4,-1,-1};
static DWORD static DWORD
DATETIME_GetSystemTime (DATETIME_INFO *infoPtr, SYSTEMTIME *lprgSysTimeArray) DATETIME_GetSystemTime (const DATETIME_INFO *infoPtr, SYSTEMTIME *lprgSysTimeArray)
{ {
if (!lprgSysTimeArray) return GDT_NONE; if (!lprgSysTimeArray) return GDT_NONE;