Commit 7a8eb4c5 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

user32: Constify some variables.

parent 029a74e5
...@@ -131,7 +131,7 @@ static TIMER_DIRECTION LISTBOX_Timer = LB_TIMER_NONE; ...@@ -131,7 +131,7 @@ static TIMER_DIRECTION LISTBOX_Timer = LB_TIMER_NONE;
static LRESULT WINAPI ListBoxWndProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ); static LRESULT WINAPI ListBoxWndProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam );
static LRESULT WINAPI ListBoxWndProcW( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ); static LRESULT WINAPI ListBoxWndProcW( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam );
static LRESULT LISTBOX_GetItemRect( LB_DESCR *descr, INT index, RECT *rect ); static LRESULT LISTBOX_GetItemRect( const LB_DESCR *descr, INT index, RECT *rect );
/********************************************************************* /*********************************************************************
* listbox class descriptor * listbox class descriptor
...@@ -177,7 +177,7 @@ static inline BOOL is_old_app( LB_DESCR *descr ) ...@@ -177,7 +177,7 @@ static inline BOOL is_old_app( LB_DESCR *descr )
* *
* Return the current page size * Return the current page size
*/ */
static INT LISTBOX_GetCurrentPageSize( LB_DESCR *descr ) static INT LISTBOX_GetCurrentPageSize( const LB_DESCR *descr )
{ {
INT i, height; INT i, height;
if (!(descr->style & LBS_OWNERDRAWVARIABLE)) return descr->page_size; if (!(descr->style & LBS_OWNERDRAWVARIABLE)) return descr->page_size;
...@@ -195,7 +195,7 @@ static INT LISTBOX_GetCurrentPageSize( LB_DESCR *descr ) ...@@ -195,7 +195,7 @@ static INT LISTBOX_GetCurrentPageSize( LB_DESCR *descr )
* *
* Return the maximum possible index for the top of the listbox. * Return the maximum possible index for the top of the listbox.
*/ */
static INT LISTBOX_GetMaxTopIndex( LB_DESCR *descr ) static INT LISTBOX_GetMaxTopIndex( const LB_DESCR *descr )
{ {
INT max, page; INT max, page;
...@@ -432,7 +432,7 @@ static void LISTBOX_UpdateSize( LB_DESCR *descr ) ...@@ -432,7 +432,7 @@ static void LISTBOX_UpdateSize( LB_DESCR *descr )
* Get the rectangle enclosing an item, in listbox client coordinates. * Get the rectangle enclosing an item, in listbox client coordinates.
* Return 1 if the rectangle is (partially) visible, 0 if hidden, -1 on error. * Return 1 if the rectangle is (partially) visible, 0 if hidden, -1 on error.
*/ */
static LRESULT LISTBOX_GetItemRect( LB_DESCR *descr, INT index, RECT *rect ) static LRESULT LISTBOX_GetItemRect( const LB_DESCR *descr, INT index, RECT *rect )
{ {
/* Index <= 0 is legal even on empty listboxes */ /* Index <= 0 is legal even on empty listboxes */
if (index && (index >= descr->nb_items)) if (index && (index >= descr->nb_items))
...@@ -490,7 +490,7 @@ static LRESULT LISTBOX_GetItemRect( LB_DESCR *descr, INT index, RECT *rect ) ...@@ -490,7 +490,7 @@ static LRESULT LISTBOX_GetItemRect( LB_DESCR *descr, INT index, RECT *rect )
* *
* Return the item nearest from point (x,y) (in client coordinates). * Return the item nearest from point (x,y) (in client coordinates).
*/ */
static INT LISTBOX_GetItemFromPoint( LB_DESCR *descr, INT x, INT y ) static INT LISTBOX_GetItemFromPoint( const LB_DESCR *descr, INT x, INT y )
{ {
INT index = descr->top_item; INT index = descr->top_item;
...@@ -999,10 +999,10 @@ static INT LISTBOX_FindString( LB_DESCR *descr, INT start, LPCWSTR str, BOOL exa ...@@ -999,10 +999,10 @@ static INT LISTBOX_FindString( LB_DESCR *descr, INT start, LPCWSTR str, BOOL exa
/*********************************************************************** /***********************************************************************
* LISTBOX_GetSelCount * LISTBOX_GetSelCount
*/ */
static LRESULT LISTBOX_GetSelCount( LB_DESCR *descr ) static LRESULT LISTBOX_GetSelCount( const LB_DESCR *descr )
{ {
INT i, count; INT i, count;
LB_ITEMDATA *item = descr->items; const LB_ITEMDATA *item = descr->items;
if (!(descr->style & LBS_MULTIPLESEL) || if (!(descr->style & LBS_MULTIPLESEL) ||
(descr->style & LBS_NOSEL)) (descr->style & LBS_NOSEL))
...@@ -1016,10 +1016,10 @@ static LRESULT LISTBOX_GetSelCount( LB_DESCR *descr ) ...@@ -1016,10 +1016,10 @@ static LRESULT LISTBOX_GetSelCount( LB_DESCR *descr )
/*********************************************************************** /***********************************************************************
* LISTBOX_GetSelItems16 * LISTBOX_GetSelItems16
*/ */
static LRESULT LISTBOX_GetSelItems16( LB_DESCR *descr, INT16 max, LPINT16 array ) static LRESULT LISTBOX_GetSelItems16( const LB_DESCR *descr, INT16 max, LPINT16 array )
{ {
INT i, count; INT i, count;
LB_ITEMDATA *item = descr->items; const LB_ITEMDATA *item = descr->items;
if (!(descr->style & LBS_MULTIPLESEL)) return LB_ERR; if (!(descr->style & LBS_MULTIPLESEL)) return LB_ERR;
for (i = count = 0; (i < descr->nb_items) && (count < max); i++, item++) for (i = count = 0; (i < descr->nb_items) && (count < max); i++, item++)
...@@ -1031,10 +1031,10 @@ static LRESULT LISTBOX_GetSelItems16( LB_DESCR *descr, INT16 max, LPINT16 array ...@@ -1031,10 +1031,10 @@ static LRESULT LISTBOX_GetSelItems16( LB_DESCR *descr, INT16 max, LPINT16 array
/*********************************************************************** /***********************************************************************
* LISTBOX_GetSelItems * LISTBOX_GetSelItems
*/ */
static LRESULT LISTBOX_GetSelItems( LB_DESCR *descr, INT max, LPINT array ) static LRESULT LISTBOX_GetSelItems( const LB_DESCR *descr, INT max, LPINT array )
{ {
INT i, count; INT i, count;
LB_ITEMDATA *item = descr->items; const LB_ITEMDATA *item = descr->items;
if (!(descr->style & LBS_MULTIPLESEL)) return LB_ERR; if (!(descr->style & LBS_MULTIPLESEL)) return LB_ERR;
for (i = count = 0; (i < descr->nb_items) && (count < max); i++, item++) for (i = count = 0; (i < descr->nb_items) && (count < max); i++, item++)
...@@ -1200,7 +1200,7 @@ static void LISTBOX_InvalidateItemRect( LB_DESCR *descr, INT index ) ...@@ -1200,7 +1200,7 @@ static void LISTBOX_InvalidateItemRect( LB_DESCR *descr, INT index )
/*********************************************************************** /***********************************************************************
* LISTBOX_GetItemHeight * LISTBOX_GetItemHeight
*/ */
static LRESULT LISTBOX_GetItemHeight( LB_DESCR *descr, INT index ) static LRESULT LISTBOX_GetItemHeight( const LB_DESCR *descr, INT index )
{ {
if (descr->style & LBS_OWNERDRAWVARIABLE && descr->nb_items > 0) if (descr->style & LBS_OWNERDRAWVARIABLE && descr->nb_items > 0)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment