return himlTemp;
}
-static BOOL COMBOEX_SetItemW (const COMBOEX_INFO *infoPtr, COMBOBOXEXITEMW *cit)
+static BOOL COMBOEX_SetItemW (const COMBOEX_INFO *infoPtr, const COMBOBOXEXITEMW *cit)
{
INT_PTR index = cit->iItem;
CBE_ITEMDATA *item;
static INT
-DATETIME_GetText (DATETIME_INFO *infoPtr, INT count, LPWSTR dst)
+DATETIME_GetText (const DATETIME_INFO *infoPtr, INT count, LPWSTR dst)
{
WCHAR buf[80];
int i;
/* Returns index of first duplicate 'value' from [0,to) range,
or -1 if there isn't any */
-static INT has_duplicate(INT *array, INT to, INT value)
+static INT has_duplicate(const INT *array, INT to, INT value)
{
INT i;
for(i = 0; i < to; i++)
}
/* returns next available value from [0,max] not to duplicate in [0,to) */
-static INT get_nextvalue(INT *array, INT to, INT max)
+static INT get_nextvalue(const INT *array, INT to, INT max)
{
INT i;
for(i = 0; i < max; i++)