shlwapi: Fix prototype of SHCreateMemStream.

oldstable
Peter Oberndorfer 2009-09-28 22:23:58 +02:00 committed by Alexandre Julliard
parent ac573f6aba
commit 2d41762553
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ IStream * WINAPI SHOpenRegStreamW(HKEY hkey, LPCWSTR pszSubkey,
* A copy of the memory pointed to by lpbData is made, and is freed
* when the stream is released.
*/
IStream * WINAPI SHCreateMemStream(LPBYTE lpbData, DWORD dwDataLen)
IStream * WINAPI SHCreateMemStream(const BYTE *lpbData, UINT dwDataLen)
{
IStream *iStrmRet = NULL;