Commit in reactos/lib/shlwapi on MAIN
clist.c+1-11.2 -> 1.3
url.c+1-11.11 -> 1.12
+2-2
2 modified files
Sync to Wine-20041201
Eric Pouech <pouech-eric@wanadoo.fr>
- Const correctness fixes.

reactos/lib/shlwapi
clist.c 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- clist.c	20 Oct 2004 16:49:27 -0000	1.2
+++ clist.c	7 Dec 2004 19:28:49 -0000	1.3
@@ -51,7 +51,7 @@
  */
 inline static LPSHLWAPI_CLIST NextItem(LPCSHLWAPI_CLIST lpList)
 {
-  const char* address = (char*)lpList;
+  const char* address = (const char*)lpList;
   address += lpList->ulSize;
   return (LPSHLWAPI_CLIST)address;
 }

reactos/lib/shlwapi
url.c 1.11 -> 1.12
diff -u -r1.11 -r1.12
--- url.c	20 Oct 2004 16:49:27 -0000	1.11
+++ url.c	7 Dec 2004 19:28:49 -0000	1.12
@@ -1394,7 +1394,7 @@
   if (IsBadStringPtrA(pszUrl, -1) || IsBadWritePtr(lpDest, nDestLen))
     return E_INVALIDARG;
 
-  HashData((PBYTE)pszUrl, (int)strlen(pszUrl), lpDest, nDestLen);
+  HashData((const BYTE*)pszUrl, (int)strlen(pszUrl), lpDest, nDestLen);
   return S_OK;
 }
 
CVSspam 0.2.8